Skip to content

Commit 53cabb2

Browse files
authored
Merge pull request #58 from utsmannn/develop
Tech: Improved chunk processing by handling exceptions gracefully, pr…
2 parents 1e20944 + 025ac5f commit 53cabb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pr_reviewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def process_chunk(self, chunk: Dict, pr, current_head_sha: str) -> None:
184184

185185
except Exception as e:
186186
logger.error(f"Error processing chunk: {str(e)}")
187-
raise
187+
return
188188

189189
def validate_code_changes(self, pr, file_path: str, line_content: str, position: int) -> bool:
190190
try:

0 commit comments

Comments
 (0)