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

[OJ-35134] bugfix: jira version 3.1.1 validates search_users params #338

Merged
merged 1 commit into from
May 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions jf_agent/jf_jira/jira_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@ def _exclude_filter(proj):

def project_is_accessible(project_id):
try:
retry_for_status(jira_connection.search_issues, f'project = {project_id}', fields=['id'])
retry_for_status(
jira_connection.search_issues, f'project = {project_id}', fields=['id']
)
return True
except JIRAError as e:
# Handle zombie projects that appear in the project list
Expand Down Expand Up @@ -859,7 +861,7 @@ def _search_all_users(jira_connection, gdpr_active):
start_at = 0

# different jira versions / different times, the way to list all users has changed. Try a few.
for q in [None, '', '""', '%', '@']:
for q in [' ', '""', '%', '@']:
logger.debug(f'Attempting wild card search with {q}')
# iterate through pages of results
while True:
Expand Down
Loading