-
Notifications
You must be signed in to change notification settings - Fork 89
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
Regression: localhost.localdomain default breaks name resolution #175
Comments
Hello @dhay The
|
This is what I’ve done for the time being to work around the issue. That said, I’m not sure I understand the impetus for the change. |
Same issue here. Our test suite (involving the |
Describe the bug
In version 1.2.1, the following update was made:
This causes issues when we go to make requests to our Flask test server. Specifically we get errors that look like this:
When we make a request to
url_for
, we get back a URL that looks likehttp://localhost.localdomain/graphql
instead ofhttp://localhost/graphql
While I know I can add
localhost.localdomain
to my local /etc/hosts file, there are many docker images we're using in our CI pipelines that also do not know how to resolve this domain name.The text was updated successfully, but these errors were encountered: