From f37a05e330170ab5c2081ca68358439d1b66b493 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 21 Jul 2025 20:51:43 +0100 Subject: [PATCH] Fix timeout syntax --- cookbooks/elasticsearch/recipes/default.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbooks/elasticsearch/recipes/default.rb b/cookbooks/elasticsearch/recipes/default.rb index adf5863a6..63ed3fd45 100644 --- a/cookbooks/elasticsearch/recipes/default.rb +++ b/cookbooks/elasticsearch/recipes/default.rb @@ -39,8 +39,8 @@ end systemd_service "elasticsearch-override" do service "elasticsearch" dropin "override" - timeout_start_sec "180s" - timeout_stop_sec "180s" + timeout_start_sec 180 + timeout_stop_sec 180 notifies :restart, "service[elasticsearch]" end -- 2.39.5