-
Notifications
You must be signed in to change notification settings - Fork 410
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem: Some of our github actions have been failing due to the following tests: In our `InMemoryStatsReceiverUtilityTest`, by the time we get to the waitFor call, the metrics have already been updated too many times. In `FeatureTestNonInjectionCustomStatsReceiverTest`, we check that our gauges are nonempty because they should be populated at startup, but occasionally the server is not fully started before our check. Solution: For `InMemoryStatsReceiverUtilityTest`, we'll call `waitFor` in its own thread before adding to stats, counters, gauges For `FeatureTestNonInjectionCustomStatsReceiverTest`, we'll wait for the server to complete startup before running any tests JIRA Issues: CSL-11274 Differential Revision: https://phabricator.twitter.biz/D766267
- Loading branch information
1 parent
cf44ba8
commit da68130
Showing
2 changed files
with
14 additions
and
8 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