-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for intermittency in unique job tests that use
ByPeriod
Fix for #392 in which under rare cases, a test can start right up against the boundary of a period in use for unique opts, cross over that period, and produce the wrong result as a new row is inserted. For example, using a period of 15 minutes like in `db_unique_test.go`, if the tests run at 14:59:59.998, there's a good chance that they'll finish after 15:00:00, thereby encapsulating two separate 15 minutes and allowing separate jobs to be inserted. This is more likely to happen in CI where tests take long to run. The fix is to use a more stable time for this time of test. We use the current hour, but assign a fixed minute and second that's right in the middle and nowhere near any boundaries. I gave `client_test.go`'s unique tests the same treatment since it's possible for this problem to happen there too, although they're using a 24 hour period so it was already very unlikely. (The test case would have to start at exactly the wrong moment before a UTC day boundary.) Fixes #392.
- Loading branch information
Showing
26 changed files
with
259 additions
and
196 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.