Open
Description
In my case, all requests to the Jira server are sent through a proxy server
in the header parameters, I specify the address of the proxy server and the parameter for authorization
All non-GET requests failed
This is because the SELF parameter is updated when the RESOURCE object is called - It is parsed from the response that specifies the original Jira-server and not the proxy.
Call trace:
issueInst = jira.issue()
---> issue = Issue()
---> issue.find(id, params=params)
issueInst.update()
wrong handling:
Line 1056 in 7fa3a45