-
-
Notifications
You must be signed in to change notification settings - Fork 877
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 verify not sent with request (#1573) #1631
fix verify not sent with request (#1573) #1631
Conversation
Could someone please add the bug label to this PR? I don't have permission to do so. |
thanks for the PR |
It's not clear to me why the |
This commit fixes an issue where the `verify` option is not passed along with requests issued by the ResilientSession class. This commit adds the `verify` option into the request args inside the `_jira_prepare` function. The commit includes a unit test that verifies that `session.verify` is correclty handed over to requests during subsequent Jira API calls.
ae35a3f
to
d1b413f
Compare
I assume it because my PR doesn't have access to the project secrets, so doesn't need anything fixed from my side. |
Exactly the case, sorry for the delay. Thanks for the great quality PR! |
This commit fixes an issue where the
verify
option is not passed along with requests issued by the ResilientSession class. This commit adds theverify
option into the request args inside the_jira_prepare
function.The commit includes a unit test that verifies that
session.verify
is correclty handed over to requests during subsequent Jira API calls.