improved logging when waiting for auto-scaling group to produce healthy instance

This commit is contained in:
Axel Uhl
2025-04-23 11:46:34 +02:00
parent 9f88cdbdf3
commit fc655c4462
@@ -1439,7 +1439,7 @@ public class LandscapeServiceImpl implements LandscapeService {
return Wait.wait(()->hasHealthyAutoScalingReplica(master, autoScalingGroup), healthyReplica->healthyReplica != null,
/* retryOnException */ true,
Landscape.WAIT_FOR_HOST_TIMEOUT, Duration.ONE_SECOND.times(5), Level.INFO,
"Waiting for auto-scaling group to produce healthy replica");
"Waiting for auto-scaling group "+autoScalingGroup.getName()+" to produce healthy replica");
}
/**