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
Didn't take much time on this but first seen in https://travis-ci.org/OpenIDC/pyoidc/jobs/213191415.
The text was updated successfully, but these errors were encountered:
Mark as failing per #287.
1909376
This way, we're not getting red builds when we're hacking on other stuff.
I was digging a little bit into this.
The issue is in sanitize as it will keep B or U before the <REDACTED> if the sensitive part is starting with it.
B
U
<REDACTED>
So it is not an error in test but rather a bug in sanitize function...
sanitize
sanitize('code=bttt') => code=b<REDACTED>
sanitize('code=bttt')
code=b<REDACTED>
Sorry, something went wrong.
Fix sanitize to completely replace strings starting with B or U
4443166
Fix #287
d55d30a
No branches or pull requests
Didn't take much time on this but first seen in https://travis-ci.org/OpenIDC/pyoidc/jobs/213191415.
The text was updated successfully, but these errors were encountered: