You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def process_change(change):
result = generate_review(change, *args, **kwargs)
if result is not None and result.strip(): # 检查结果是否为非 None 且非空字符串
with result_lock:
review_results.append(result)
The text was updated successfully, but these errors were encountered:
1、gitlab_integration/webhook_listener.py里面def handle_merge_request(self, gitlab_payload, reply):方法if判断加上reopen的判断
2、review_engine/handler/default_handler.py里面review_results要过滤null
The text was updated successfully, but these errors were encountered: