Don't send expired overrides in watch context#5
Merged
bharat merged 2 commits intobharat:dev-watch-skfrom Aug 5, 2018
Merged
Conversation
Owner
|
I took a quick look at it. Would something like this work? |
Author
|
Perfect. Don't know why I didn't see that. Still getting used to the different ways of dealing with optionals in Swift. |
bharat
pushed a commit
that referenced
this pull request
May 6, 2019
* Limit recommended temp basals to supported rates. * Use pumpmanager provided rounding * Fix tests, and update to PumpManager function name change * Update naming from review comments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I'm not 100% pleased with this solution since we create the
temporaryOverridestruct first, only to possibly set it tonilafter that. But a cleaner solution has evaded me - it is complicated by the fact that either an undefined end date (indicating an indefinite override) or a defined end date that is in the future are both things that we want to keep. The alternative would be a more complicated if-then block to check the end of the override, and then create, or not, the override struct. As written here, the creation of the struct handles the optional checking for the end of the override and defines a value there, and then we can do a simpler if-then check to decide whether or not to discard it.