mprove get_review_thread_comments method implementation

Co-authored-by: ofir-frd <85901822+ofir-frd@users.noreply.github.com>
This commit is contained in:
Benedict Lee
2025-04-24 11:23:16 +09:00
committed by GitHub
parent ddb94ec9b4
commit c35942c12b

View File

@ -460,7 +460,7 @@ class GithubProvider(GitProvider):
return thread_comments return thread_comments
except Exception as e: except Exception as e:
get_logger().warning(f"Failed to get review comments for comment {comment_id}, error: {e}") get_logger().exception(f"Failed to get review comments for an inline ask command", artifact={"comment_id": comment_id, "error": e})
return [] return []
def _publish_inline_comments_fallback_with_verification(self, comments: list[dict]): def _publish_inline_comments_fallback_with_verification(self, comments: list[dict]):