Skip to content

Commit

Permalink
Merge pull request #288 from RHsyseng/efficient-comments
Browse files Browse the repository at this point in the history
Remove redundant call to retrieve issue comments
  • Loading branch information
adhil0 authored Apr 11, 2024
2 parents fefe6c9 + 43febc0 commit 6ce3a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/t5gweb/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def get_cards(cfg, self=None, background=False):
},
)
issue = jira_conn.issue(card)
comments = jira_conn.comments(issue)
comments = issue.fields.comment.comments
card_comments = []
for comment in comments:
body = comment.body
Expand Down

0 comments on commit 6ce3a08

Please sign in to comment.