Remove test end file - #564
Merged
Merged
Conversation
danth
requested review from
FScholPer,
MaciejKaszynski,
NicolasFussberger,
anmittag,
antonkri,
pawelrutkaq and
ramceb
as code owners
August 28, 2026 15:27
Contributor
License Check Results🚀 The license check job ran with the Bazel command: bazel run --lockfile_mode=error //:license-checkStatus: Click to expand output |
MaciejKaszynski
requested changes
Aug 28, 2026
danth
force-pushed
the
no-test-end-file
branch
from
August 31, 2026 09:01
9459c6c to
b3e416a
Compare
danth
force-pushed
the
no-test-end-file
branch
from
September 1, 2026 12:22
b3e416a to
c29ddeb
Compare
MaciejKaszynski
previously approved these changes
Sep 1, 2026
Previously, the Python script would poll for the existence of a test end file, which was created by the control client test driver. The Python script would send `SIGTERM` to launch manager once the file appeared. Now, the control client test driver just sends `SIGTERM` directly to launch manager. This setup has been a source of flakiness in the past, so removing it may help. Also, it allows us to drop a patch on ITF as we are no longer affected by that bug.
danth
force-pushed
the
no-test-end-file
branch
from
September 1, 2026 12:29
c29ddeb to
a8c16a1
Compare
MaciejKaszynski
approved these changes
Sep 1, 2026
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.
Previously, the Python script would poll for the existence of a test end file, which was created by the control client test driver. The Python script would send
SIGTERMto launch manager once the file appeared.Now, the control client test driver just sends
SIGTERMdirectly to launch manager.This setup has been a source of flakiness in the past, so removing it may help. Also, it allows us to drop a patch on ITF as we are no longer affected by that bug.
Thanks to @MaciejKaszynski for exploring this the other day 😄