From 08c39d4744ea1fb1789ddd2b289cd4edac63f75f Mon Sep 17 00:00:00 2001 From: Myron Marston Date: Mon, 18 Nov 2024 06:49:25 -0800 Subject: [PATCH] Increase default docker `daemon_timeout`. Our CI builds have been timing out at 120 seconds recently. Giving it 60 more seconds should help them fail less often. --- elasticgraph-local/lib/elastic_graph/local/rake_tasks.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticgraph-local/lib/elastic_graph/local/rake_tasks.rb b/elasticgraph-local/lib/elastic_graph/local/rake_tasks.rb index d6f69924..b9739453 100644 --- a/elasticgraph-local/lib/elastic_graph/local/rake_tasks.rb +++ b/elasticgraph-local/lib/elastic_graph/local/rake_tasks.rb @@ -362,7 +362,7 @@ def initialize(local_config_yaml:, path_to_schema:) self.enforce_json_schema_version = true self.env_port_mapping = {} self.output = $stdout - self.daemon_timeout = 120 + self.daemon_timeout = 180 datastore_versions = ::YAML.load_file("#{__dir__}/tested_datastore_versions.yaml") self.elasticsearch_versions = datastore_versions.fetch("elasticsearch")