Skip to content

Commit

Permalink
chore: update enpoint to ready
Browse files Browse the repository at this point in the history
  • Loading branch information
bernokl committed Oct 15, 2024
1 parent 622d766 commit 5e681db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions nix/cardano-services/deployments/backend.provider.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
metricsPath = "${values.cardano-services.httpPrefix}/metrics";

livenessProbe = {
timeoutSeconds = 30;
periodSeconds = 60;
timeoutSeconds = 5;
periodSeconds = 10;
httpGet = {
path = "${values.cardano-services.httpPrefix}/health";
path = "${values.cardano-services.httpPrefix}/ready";
port = 3000;
};
};
Expand Down
3 changes: 2 additions & 1 deletion nix/cardano-services/deployments/chain-history.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@

livenessProbe = {
timeoutSeconds = 5;
periodSeconds = 10;
httpGet = {
path = "${values.cardano-services.httpPrefix}/health";
path = "${values.cardano-services.httpPrefix}/ready";
port = 3000;
};
};
Expand Down

0 comments on commit 5e681db

Please sign in to comment.