From 443ebfcb9d1665132fdb7b85c3415d35644716e3 Mon Sep 17 00:00:00 2001 From: Benoit Moriceau Date: Mon, 9 Jan 2023 08:25:46 -0800 Subject: [PATCH] Remove deprecated getter (#21089) * Rm temporal version * Remove temporal version * Update the replayed workflow * Remove quarantine information * Remove deprecated getter --- .../commons/temporal/scheduling/state/WorkflowState.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/airbyte-commons-temporal/src/main/java/io/airbyte/commons/temporal/scheduling/state/WorkflowState.java b/airbyte-commons-temporal/src/main/java/io/airbyte/commons/temporal/scheduling/state/WorkflowState.java index 351698d38f44..71fbcc370a23 100644 --- a/airbyte-commons-temporal/src/main/java/io/airbyte/commons/temporal/scheduling/state/WorkflowState.java +++ b/airbyte-commons-temporal/src/main/java/io/airbyte/commons/temporal/scheduling/state/WorkflowState.java @@ -30,8 +30,10 @@ public WorkflowState(final UUID id, final WorkflowStateChangedListener stateChan private boolean cancelled = false; private boolean failed = false; @Deprecated + @Getter(AccessLevel.NONE) private final boolean resetConnection = false; @Deprecated + @Getter(AccessLevel.NONE) private final boolean continueAsReset = false; @Deprecated @Getter(AccessLevel.NONE) @@ -39,6 +41,7 @@ public WorkflowState(final UUID id, final WorkflowStateChangedListener stateChan private boolean success = true; private boolean cancelledForReset = false; @Deprecated + @Getter(AccessLevel.NONE) private final boolean resetWithScheduling = false; private boolean doneWaiting = false; private boolean skipSchedulingNextWorkflow = false;