Skip to content
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 bug preventing use of an int for issuetype in def create_issue #1445

Merged
merged 5 commits into from
Aug 4, 2022

Conversation

rynkk
Copy link
Contributor

@rynkk rynkk commented Aug 3, 2022

Continuation of PR #1273 by adding tests

Apparent bug causes supplied issuetype for create_issue to always be treated as the name and not as the id, even if an integer was passed.

name should be used if a string was passed, e.g., "1234",
id should be used, if an integer was passed, e.g., 1234

See issue #1274


The program was tested solely for our own use cases, which might differ from yours.

Jannik Meinecke jannik.meinecke@mercedes-benz.com on behalf of MBition GmbH.
https://github.com/mercedes-benz/foss/blob/master/PROVIDER_INFORMATION.md
Licensed under MIT

martinlocklear and others added 4 commits January 4, 2022 15:47

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
At some point a bug was introduced which prevents us from using `def create_issue(` to create an
issue of a specific `issuetype`, when you want to indicate the issue type using an `int`.  This is
especially problematic for issue types where the string `issuetype` doesn't unambiguously identify
the necessary issue type.  This causes `def issue_type_by_name(` to raise a KeyError.

There's currently a workaround (to use `def create_issues(`, which doesn't contain this bug.)

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Jannik Meinecke (<jannik.meinecke@mercedes-benz.com>) on behalf of MBition GmbH.
https://github.com/mercedes-benz/foss/blob/master/PROVIDER_INFORMATION.md

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
…-integer_issuetype
Jannik Meinecke (<jannik.meinecke@mercedes-benz.com>) on behalf of MBition GmbH.
https://github.com/mercedes-benz/foss/blob/master/PROVIDER_INFORMATION.md
Copy link
Contributor

@adehad adehad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for this

@adehad adehad added the bug label Aug 4, 2022
@adehad adehad linked an issue Aug 4, 2022 that may be closed by this pull request
4 tasks
@adehad adehad merged commit 8ee5508 into pycontribs:main Aug 4, 2022
@adehad
Copy link
Contributor

adehad commented Aug 4, 2022

Thanks again @rynkk !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unable to use JIRA.create_issue in client.py with integer issuetype
3 participants