Open
Conversation
In our deployment we observe these logs on the server: ``` │ rucio-server [2026-01-25 11:27:15] 10.244.0.51 _gateway - aXX-EwYUDVckA2Fh8qI1MAAAAQA 308 1711 245 3283572 "GET /ping HTTP/1.1" "-" "kube-probe/1.34" │ │ rucio-server [2026-01-25 11:27:15] 10.244.0.51 _gateway - aXX-E6xq_YR1ydXMBK0lHQAAAYA 308 1711 245 2722894 "GET /ping HTTP/1.1" "-" "kube-probe/1.34" │ │ rucio-server [2026-01-25 11:27:18] 10.244.0.51 _gateway - aXX-FgYUDVckA2Fh8qI1MQAAAQI 200 1751 21 3256241 "GET /ping/ HTTP/1.1" "-" "kube-probe/1.34" │ │ rucio-server [2026-01-25 11:27:18] 10.244.0.51 _gateway - aXX-FgYUDVckA2Fh8qI1MgAAAQM 200 1751 21 3255756 "GET /ping/ HTTP/1.1" "-" "kube-probe/1.34" ``` So the initial probe gets a 308 redirect from `/ping` to `/ping/` and the the ping succeeds. Directly using `/ping/` should avoid these redirects.
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.
In our deployment we observe these logs on the server:
So the initial probe gets a 308 redirect from
/pingto/ping/and only then the ping succeeds.Directly using
/ping/should avoid these redirects.