Python JIRA SOAPpy annoying redirect to findIssue

I am trying to connect WSDL SOAP to our JIRA server using SOAPpy (Python SOAP Library).

Everything seems perfect if I do not try to find specific problems. Through a web browser, looking for the error identifier, it actually redirects to the error (with a different identifier), however this error in question is simply moved to another project.

Attempts to getIssue through the SOAPpy API throw an exception that the problem does not exist.

How to get around this?

thank

+3
source share
1 answer

Yes, there is a mistake that I saw. Use the JIRA problem identifier instead of the key to find it as a workaround.

+2

Source: https://habr.com/ru/post/1777813/


All Articles