diff --git a/rhodecode/lib/celerylib/tasks.py b/rhodecode/lib/celerylib/tasks.py index ec1b65b1..a0883794 100644 --- a/rhodecode/lib/celerylib/tasks.py +++ b/rhodecode/lib/celerylib/tasks.py @@ -624,8 +624,8 @@ def start_ai_code_review(pull_request_id): log.warning("instructions not set, using default instructions.") instructions = service.DEFAULT_BASIC_REVIEW_POINTS - # response = service.code_review(diffset, instructions=instructions) - # _add_comments(response, pull_request, log, ai_user) + response = service.code_review(diffset, instructions=instructions) + _add_comments(response, pull_request, log, ai_user) _set_ai_pr_state(pull_request, "finished")