-
Notifications
You must be signed in to change notification settings - Fork 276
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
New healthcheck path is not compatible with AWS ALB #1852
Comments
Ah, got it. Thanks for opening this. I think we probably have some work to do here. At the core of the error message, the query string would indeed need to be URL encoded: meaning We could make the documentation more clear about this since it certainly won't be clear to everyone that the "query" part of a URL (not just the parameter named That said, even if you were to change that to be URL encoded (and we were to fix our documentation), I foresee you running into another constraint immediately (correct me if I end up being wrong): ALB target groups health checks don't seem to let you set any HTTP headers (e.g., Ordinarily, setting headers wouldn't be required on simple Even though it's possible to disable CSRF in configuration that is not recommended though it would conceivably fix the header issue that I believe you'll encounter next after URI encoding the We're going to have to do the work to put back in a health check end-point to satisfy those requirements and I've opened #1861 (and re-hashed some of this context in that issue) to capture the work. Thanks again for filing this! |
Describe the bug
The new healthcheck path using a basic query is using characters that are not compatible with ALB Target Group Health Check configuration due to character restrictions.
To Reproduce
Steps to reproduce the behavior:
/?query={__typename})
to an ALB Target Group Health Check configurationExpected behavior
I would expect the healthcheck path to be compatible in any situation.
Output
See above
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: