From 86e7920b3ce67423c458b010463fc66c120f5caa Mon Sep 17 00:00:00 2001 From: Ryan Anderson Date: Mon, 26 Feb 2024 20:21:53 -0500 Subject: [PATCH] Set `ec2_instance_missing_max_count` default to 0, to match behavior before the option was added. --- src/slurm_plugin/clustermgtd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slurm_plugin/clustermgtd.py b/src/slurm_plugin/clustermgtd.py index 0b80974b..f4bfb1f5 100644 --- a/src/slurm_plugin/clustermgtd.py +++ b/src/slurm_plugin/clustermgtd.py @@ -150,7 +150,7 @@ class ClustermgtdConfig: "terminate_drain_nodes": True, "terminate_down_nodes": True, "orphaned_instance_timeout": 300, - "ec2_instance_missing_max_count": 2, + "ec2_instance_missing_max_count": 0, # Health check configs "disable_ec2_health_check": False, "disable_scheduled_event_health_check": False,