-
Notifications
You must be signed in to change notification settings - Fork 368
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
fix: Fixed the missing state check for hybrid flow #670
Conversation
@aeneasr The tests here are failing because they are being run in a go1.14 environment. The |
Probably the most accessible option (not requiring go 1.17) would be to do something along the lines of this since the url.Values are just a if _, ok := resp.GetParameters()["state"]; !ok {
resp.AddParameter("state", ar.GetState())
} Edit: Keep in mind I can't really speak on anyone behalf of anyone else. |
We can move to Go 1.17 :) |
@aeneasr How do we go about doing that? I don't believe I have access to update the circleci tests running for this PR. |
@aeneasr I believe Go was upgraded already. I don't have permissions to re-run the checks for this PR. Can you help me do that? |
If you merge master into your local branch and push that should trigger a rebuild. |
@harjoben can you add a test that fails the current code on master and passes with the changes you've made? Thank you! |
@harjoben are you still up for the changes? |
no problem :) |
@aeneasr I have added the relevant test. |
Can confirm the test fails before the fix (as expected), have not checked post fix as I'm assuming circleci will fail the check if it doesn't. |
thank you! |
Related Issue or Design Document
#669 has the details of the bug
Checklist
and signed the CLA.
introduces a new feature.
vulnerability. If this pull request addresses a security vulnerability, I
confirm that I got green light (please contact
[email protected]) from the maintainers to push
the changes.
works.
appropriate).
Further comments