diff --git a/styx-scheduler-service/src/main/java/com/spotify/styx/flyte/FlyteAdminClientRunner.java b/styx-scheduler-service/src/main/java/com/spotify/styx/flyte/FlyteAdminClientRunner.java index 9e67fbc829..ed18cf1290 100644 --- a/styx-scheduler-service/src/main/java/com/spotify/styx/flyte/FlyteAdminClientRunner.java +++ b/styx-scheduler-service/src/main/java/com/spotify/styx/flyte/FlyteAdminClientRunner.java @@ -263,8 +263,9 @@ public void poll(FlyteExecutionId flyteExecutionId, RunState runState) { } void init() { - LOG.info("Scheduling terminate dangling flyte execution thread"); - scheduleWithJitter(this::terminateDanglingFlyteExecutions, scheduledExecutor, terminateDanglingFlyteExecInterval); + // Comment this to unblock the continuously aborting workflows to analyze this properly. + //LOG.info("Scheduling terminate dangling flyte execution thread"); + //scheduleWithJitter(this::terminateDanglingFlyteExecutions, scheduledExecutor, terminateDanglingFlyteExecInterval); } @VisibleForTesting