Skip to content

Commit

Permalink
Minor: remove duplicated initial delay in KC health check config (#10881
Browse files Browse the repository at this point in the history
)

Signed-off-by: Federico Valeri <[email protected]>
  • Loading branch information
fvaleri authored Nov 27, 2024
1 parent 5a2dbf8 commit 364bf38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public class KafkaConnectCluster extends AbstractModel implements SupportsMetric
protected static final String LOG_AND_METRICS_CONFIG_VOLUME_MOUNT = "/opt/kafka/custom-config/";

// Configuration defaults
private static final Probe DEFAULT_HEALTHCHECK_OPTIONS = new ProbeBuilder().withInitialDelaySeconds(5).withInitialDelaySeconds(60).build();
private static final Probe DEFAULT_HEALTHCHECK_OPTIONS = new ProbeBuilder().withTimeoutSeconds(5).withInitialDelaySeconds(60).build();

// Kafka Connect configuration keys (EnvVariables)
protected static final String ENV_VAR_PREFIX = "KAFKA_CONNECT_";
Expand Down

0 comments on commit 364bf38

Please sign in to comment.