From ecfb132dc4035d8770a567516e13a1cd4df9d8cc Mon Sep 17 00:00:00 2001 From: "ievgenii.v" Date: Wed, 29 Oct 2025 20:02:48 +0200 Subject: [PATCH] feature: uncomment AI review --- rhodecode/lib/celerylib/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")