Skip to content

Commit

Permalink
Merge pull request #651 from penguincoder/elasticsearch-tostring
Browse files Browse the repository at this point in the history
Convert integer to string in elasticsearch healthcheck
  • Loading branch information
domenkozar committed Jun 7, 2023
2 parents c51a56b + 495caba commit d1e5a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/services/elasticsearch.nix
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ in

process-compose = {
readiness_probe = {
exec.command = "${pkgs.curl}/bin/curl -f -k http://${cfg.listenAddress}:${cfg.port}";
exec.command = "${pkgs.curl}/bin/curl -f -k http://${cfg.listenAddress}:${toString cfg.port}";
initial_delay_seconds = 15;
period_seconds = 10;
timeout_seconds = 2;
Expand Down

0 comments on commit d1e5a41

Please sign in to comment.