-
Notifications
You must be signed in to change notification settings - Fork 476
Rescue completed watchdog-fired Copilot runs from false authentication_failed classification
#49792
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
Merged
pelikhan
merged 6 commits into
main
from
copilot/fix-authentication-failed-classification
Aug 2, 2026
+88
−5
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e6588d1
Initial plan
Copilot 0b46db0
Rescue watchdog-fired auth false failures
Copilot 9cb2320
Merge branch 'main' into copilot/fix-authentication-failed-classifica…
github-actions[bot] 290ef81
Address review feedback: extract isExpectedLateExit, add negative aut…
Copilot 3de20ee
Merge branch 'main' into copilot/fix-authentication-failed-classifica…
github-actions[bot] efc739d
fix(codex-harness): gate fetchAWFReflect on AWF_REFLECT_ENABLED to pr…
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
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.
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.
[/tdd] The test verifies the happy path well, but does not assert the negative case: that a genuine
authentication_failed(no terminal safe-output yet) is not rescued. Without that guard, a future regression could silently swallow real auth failures.💡 Suggested companion test
Add a sibling test where
safeOutputsPathpoints to an empty file (no terminal safe-output entry), the watchdog fires, and the harness exits non-zero (or retries). The structure mirrors this test but omits theadd_commentwrite to the safe-outputs file before the watchdog fires.@copilot please address this.
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.
Added the negative test:
"does not rescue authentication_failed when no terminal safe-output was produced before the watchdog fires". The stub emits"Error: No authentication information found."and exits 1 without writing any safe-output entry; the harness exits non-zero and thelate-activity exit suppressedlog line is absent.