Skip to content

Commit

Permalink
Merge pull request #2978 from chaoss/fix-gitlab-reviews-syntax-error
Browse files Browse the repository at this point in the history
Fix gitlab reviews syntax error
  • Loading branch information
Ulincsys authored Jan 22, 2025
2 parents e06b9e5 + b27f0f8 commit 61efa9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion augur/tasks/gitlab/issues_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def process_gitlab_issue_messages(data, task_name, repo_id, logger, session):

# create mapping from mr number to pull request id of current mrs
issue_number_to_id_map = {}
issues = session.session.query(Issue).filter(Issue.repo_id == repo_id).all()
issues = session.query(Issue).filter(Issue.repo_id == repo_id).all()
for issue in issues:
issue_number_to_id_map[issue.gh_issue_number] = issue.issue_id

Expand Down

0 comments on commit 61efa9c

Please sign in to comment.