-
Notifications
You must be signed in to change notification settings - Fork 53
Flaky hunt #3455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Flaky hunt #3455
Conversation
java.util.concurrent.TimeUnit.SECONDS.sleep(5); // ⏳ Waiting time to ensure, the db had … | ||
// … enough time to delete the job. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually I wanted to write rather
java.util.concurrent.TimeUnit.SECONDS.sleep(5); // ⏳ Waiting time to ensure, the db had … | |
// … enough time to delete the job. | |
// ⏳ Waiting time to ensure, the db had enough time to delete the job. | |
java.util.concurrent.TimeUnit.SECONDS.sleep(5); | |
or at least
java.util.concurrent.TimeUnit.SECONDS.sleep(5); // ⏳ Waiting time to ensure, the db had … | |
// … enough time to delete the job. | |
java.util.concurrent.TimeUnit.SECONDS.sleep(5); // ⏳ Waiting time to ensure, the db had … | |
// … enough time to delete the job. |
But that java-style-guide does not like it.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
devbox.lock
Outdated
"plugin_version": "0.0.4", | ||
"resolved": "github:NixOS/nixpkgs/5629520edecb69630a3f4d17d3d33fc96c13f6fe#python3", | ||
"last_modified": "2024-12-23T21:10:33Z", | ||
"plugin_version": "0.0.3", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[markdownlint-fix] reported by reviewdog 🐶
"plugin_version": "0.0.3", | |
"plugin_version": "0.0.4", |
@@ -133,6 +133,8 @@ public void testDeleteSchedule() throws Exception { | |||
mockMvc.perform( | |||
delete(TestDataSetupHelper.getSchedulerPath(appId)).accept(MediaType.APPLICATION_JSON)); | |||
|
|||
java.util.concurrent.TimeUnit.SECONDS.sleep(5); // ⏳ Waiting time to ensure, the db had … |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the first instance, this PR is to detect flaky tests and provoke their failure.