Skip to content

Commit

Permalink
chore(anomaly-detection): disable AD on breakpoint (#1620)
Browse files Browse the repository at this point in the history
  • Loading branch information
ram-senth authored Dec 14, 2024
1 parent 1bfe12f commit 13dcc90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/seer/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def is_autofix_enabled(self):

@property
def is_anomaly_detection_enabled(self):
return self.ANOMALY_DETECTION_ENABLED or "breakpoint" in self.HOSTNAME
return self.ANOMALY_DETECTION_ENABLED or "anomaly-detect" in self.HOSTNAME

@cached_property
def smoke_test_id(self) -> str:
Expand Down

0 comments on commit 13dcc90

Please sign in to comment.