Skip to content

Commit 9fee3ea

Browse files
- add comment to explain why short-circuit
1 parent be86048 commit 9fee3ea

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/external_coding_agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ def generate_fixes(self, vuln_uuid: str, remediation_id: str, vuln_title: str, i
189189
telemetry_handler.update_telemetry("additionalAttributes.externalIssueNumber", issue_number)
190190

191191
if self.config.CODING_AGENT == CodingAgents.CLAUDE_CODE.name:
192+
# temporary short-circuit for Claude until we implement the PR processing logic
192193
log("Claude agent processing support is not implemented as of yet so stop processing and log agent failure", is_error=True)
193194
telemetry_handler.update_telemetry("resultInfo.prCreated", False)
194195
telemetry_handler.update_telemetry("resultInfo.failureReason", "Claude processing not implemented")

src/github/external_coding_agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ def generate_fixes(self, vuln_uuid: str, remediation_id: str, vuln_title: str, i
188188
telemetry_handler.update_telemetry("additionalAttributes.externalIssueNumber", issue_number)
189189

190190
if self.config.CODING_AGENT == CodingAgents.CLAUDE_CODE.name:
191+
# temporary short-circuit for Claude until we implement the PR processing logic
191192
log("Claude agent processing support is not implemented as of yet so stop processing and log agent failure", is_error=True)
192193
telemetry_handler.update_telemetry("resultInfo.prCreated", False)
193194
telemetry_handler.update_telemetry("resultInfo.failureReason", "Claude processing not implemented")

0 commit comments

Comments
 (0)