Skip to content

Commit

Permalink
Increase backend health timeout + drop index before creating a new on…
Browse files Browse the repository at this point in the history
…e to save disc space (#3163)
  • Loading branch information
g-duval authored Dec 3, 2024
1 parent c9f45a1 commit 1f9bf2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .rhcicd/clowdapp-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ objects:
path: /health/ready
port: 8000
scheme: HTTP
initialDelaySeconds: 40
initialDelaySeconds: 1200
periodSeconds: 10
timeoutSeconds: 1
successThreshold: 1
Expand All @@ -108,7 +108,7 @@ objects:
path: /health/live
port: 8000
scheme: HTTP
initialDelaySeconds: 40
initialDelaySeconds: 1200
periodSeconds: 10
timeoutSeconds: 1
successThreshold: 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
CREATE INDEX ix_drawer_notification_org_id_user_id_read_created_event_id ON drawer_notification (org_id, user_id, read, created DESC, event_id);
DROP INDEX ix_drawer_notification_org_id_user_id_created_read_event_id;
CREATE INDEX ix_drawer_notification_org_id_user_id_read_created_event_id ON drawer_notification (org_id, user_id, read, created DESC, event_id);

0 comments on commit 1f9bf2e

Please sign in to comment.