jira-python 0.13 fails to pull error message[s] from failed JIRA.create()

Gregory Sudderth
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 17, 2013

I am (very happily) using the JIRA Python package to access our JIRA, and, have found what looks like an error.

When I access the JIRA server, and have an error (user not in the developer role for that project, or new issue is missing required fields) the package crashes on pulling the error messages.

                    if isinstance(errorMessages, (list, tuple)):
                        error = errorMessages[0]
                    else:
                        error = errorMessages

...this code blows up on the 2nd line, as errorMessages[] is empty. This is in the raise_on_error def in exceptions.

2 answers

0 votes
Gregory Sudderth
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 17, 2013

..the end result is that the program crashes while trying to raise the exception.

0 votes
Gregory Sudderth
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 17, 2013

Whoops: the error output is:

Traceback (most recent call last):
File "C:\Users\Greg CTR Sudderth\Desktop\Workspaces\Eclipse 4.2 Java EE\Create On Transition (DATA)\CreateOnTransition.py", line 49, in <module>
new_issue = jira.create_issue(project={'key': 'DATA'}, issuetype={'name': 'Data Service Request'})
File "C:\Python27\lib\site-packages\jira\client.py", line 369, in create_issue
raise_on_error(r)
File "C:\Python27\lib\site-packages\jira\exceptions.py", line 29, in raise_on_error
error = errorMessages[0]
IndexError: list index out of range

Suggest an answer

Log in or Sign up to answer