-
Notifications
You must be signed in to change notification settings - Fork 463
Trigger fault sequence for forceful connection closures #2431
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
Open
Piumal1999
wants to merge
3
commits into
wso2:master
Choose a base branch
from
Piumal1999:APIM-4414
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
Some comments aren't visible on the classic Files Changed page.
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
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.
🧩 Analysis chain
Verify pipe notification and metrics handling.
The implementation correctly addresses the PR objective by conditionally triggering the error handler only when
state != ProtocolState.RESPONSE_DONE, preventing spurious error logs when the response is already complete.However, comparing this with similar event handlers in the file (e.g.,
closed(),timeout(),exception()), I notice that those methods call:informReaderError()orinformWriterError()based on state to notify pipes that an error occurredmetrics.disconnected()ormetrics.incrementFaultsReceiving()The
endOfInputmethod doesn't make these calls. WhileshutdownConnection(conn, true)andtargetErrorHandler.handleError()might handle this internally, it's worth verifying that:Run the following script to check how
informReaderErrorandinformWriterErrorare used in other event handlers and whethershutdownConnectionhandles pipe cleanup:🏁 Script executed:
Length of output: 37585
Let me search for the complete implementations in the codebase to verify the pattern.
Let me correct that and run with the repository:
🏁 Script executed:
Length of output: 10675
🏁 Script executed:
Length of output: 13628
Add pipe notifications and metrics update to prevent thread hangs and incomplete monitoring.
Verification shows that
endOfInput()is missing critical operations found in similar event handlers:Missing pipe notifications: Both
closed()(lines 781, 794) andexception()(lines 1095, 1106) callinformWriterError()orinformReaderError()for REQUEST_HEAD/REQUEST_BODY and RESPONSE_HEAD/RESPONSE_BODY states respectively. These notify the pipes and prevent threads from hanging. TheendOfInput()method omits these calls entirely.Missing metrics update: The
closed()method callsmetrics.disconnected()(line 832) for all closures. TheendOfInput()method has no equivalent metrics call.The pattern from existing handlers is: Always notify pipes for relevant states, but conditionally call error handler based on
state != RESPONSE_DONE. Currently,endOfInput()only does the conditional error handler part.Fix required: Add pipe notifications and metrics update similar to
closed()andexception()methods.🤖 Prompt for AI Agents