-
Notifications
You must be signed in to change notification settings - Fork 811
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
Fix shutdown problems in ping application. #2141
Fix shutdown problems in ping application. #2141
Conversation
* Make sure HTTP server gracefully shuts down. * Since ListenAndServe() always returns a non-nil error, the application exited by logger.Fatal() before graceful shutdown process is completed. * Remove unnecessary error log. * In shutdown process of udpServer, an error log was always emitted, but it's not an error in intentional shutdown triggered by signal.
Build Succeeded 👏 Build Id: 1442e879-c381-494e-ba8b-84cb353c01ba The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
Build Succeeded 👏 Build Id: 33f4c460-38ba-45db-abca-069d73fc78ae The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
0c45c47
to
8f05962
Compare
Build Failed 😱 Build Id: 11cd3d06-8519-49e8-8b6c-b8399c411892 To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Hmnn, that happened again 🤔 |
Build Succeeded 👏 Build Id: 86906f86-bd56-4705-8e36-bfded9cfdc7e The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
Build Failed 😱 Build Id: 5e5f0cd5-d47e-4711-b4de-df441ac4660a To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
This failed due to upgrading the e2e cluster to 1.19: It needs to be updated to the main branch, which will cause the tests to re-run (with the proper stateful set name). |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: markmandel, s-shin The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
New changes are detected. LGTM label has been removed. |
Build Succeeded 👏 Build Id: 7efd6604-7150-4770-8a28-bfd112f36d0d The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
What type of PR is this?
/kind bug
What this PR does / Why we need it:
ListenAndServe()
always returns a non-nil error, the application exited bylogger.Fatal()
before graceful shutdown process is completed.udpServer
, an error log was always emitted, but it's not actually an error in intentional shutdown triggered by signal.Which issue(s) this PR fixes:
None maybe.
Special notes for your reviewer:
N/A