Skip to content

Commit

Permalink
ref(alerts): Increase Seer timeout (#77038)
Browse files Browse the repository at this point in the history
When Seer is deployed it takes longer to respond as it's doing some
compilation but this result in users not being able to create or edit
their dynamic rules, so we'll give it more time.
  • Loading branch information
ceorourke authored Sep 5, 2024
1 parent f0f378c commit ce22402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3153,7 +3153,7 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]:

SEER_ANOMALY_DETECTION_MODEL_VERSION = "v1"
SEER_ANOMALY_DETECTION_URL = SEER_DEFAULT_URL # for local development, these share a URL
SEER_ANOMALY_DETECTION_TIMEOUT = 5
SEER_ANOMALY_DETECTION_TIMEOUT = 15

SEER_ANOMALY_DETECTION_ENDPOINT_URL = (
f"/{SEER_ANOMALY_DETECTION_MODEL_VERSION}/anomaly-detection/detect"
Expand Down

0 comments on commit ce22402

Please sign in to comment.