Skip to content

Commit 5e7a5da

Browse files
authored
Merge pull request #1557 from input-output-hk/release/be/0.31.x
Release/be/0.31.x
2 parents a1d85a2 + efba4ee commit 5e7a5da

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

nix/cardano-services/deployments/backend.provider.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
metricsPath = "${values.cardano-services.httpPrefix}/metrics";
1212

1313
livenessProbe = {
14-
timeoutSeconds = 30;
15-
periodSeconds = 60;
14+
timeoutSeconds = 5;
15+
periodSeconds = 10;
1616
httpGet = {
17-
path = "${values.cardano-services.httpPrefix}/health";
17+
path = "${values.cardano-services.httpPrefix}/ready";
1818
port = 3000;
1919
};
2020
};

nix/cardano-services/deployments/chain-history.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313

1414
livenessProbe = {
1515
timeoutSeconds = 5;
16+
periodSeconds = 10;
1617
httpGet = {
17-
path = "${values.cardano-services.httpPrefix}/health";
18+
path = "${values.cardano-services.httpPrefix}/ready";
1819
port = 3000;
1920
};
2021
};

0 commit comments

Comments
 (0)