We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Our validator lib does not allow 0.0.0.0 in a url:
>>> from validators import url as is_valid_url >>> is_valid_url("http://0.0.0.0/health") ValidationFailure(func=url, args={'value': 'http://0.0.0.0/health', 'public': False})
But it will allow localhost and other local addresses
>>> is_valid_url("http://localhost:8080/health") True >>> is_valid_url("http://127.0.0.1/health") True >>> is_valid_url("http://127.0.0.0/health") True
We will be sending 0.0.0.0 from fidesops, so let's specifically allow for this in fideslog
0.0.0.0
The text was updated successfully, but these errors were encountered:
PSalant726
Successfully merging a pull request may close this issue.
Our validator lib does not allow 0.0.0.0 in a url:
But it will allow localhost and other local addresses
We will be sending
0.0.0.0
from fidesops, so let's specifically allow for this in fideslogThe text was updated successfully, but these errors were encountered: