Skip to content

Commit

Permalink
[hotfix] Remove the wrong @Nullable annotation of FailureHandlingRe…
Browse files Browse the repository at this point in the history
…sult due to the constructor checks `verticesToRestart` is not null
  • Loading branch information
1996fanrui committed Jan 23, 2024
1 parent d031f60 commit ad3f13f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private FailureHandlingResult(
@Nullable Throwable cause,
long timestamp,
CompletableFuture<Map<String, String>> failureLabels,
@Nullable Set<ExecutionVertexID> verticesToRestart,
Set<ExecutionVertexID> verticesToRestart,
long restartDelayMS,
boolean globalFailure,
boolean isRootCause) {
Expand Down Expand Up @@ -247,7 +247,7 @@ public static FailureHandlingResult restartable(
@Nullable Throwable cause,
long timestamp,
CompletableFuture<Map<String, String>> failureLabels,
@Nullable Set<ExecutionVertexID> verticesToRestart,
Set<ExecutionVertexID> verticesToRestart,
long restartDelayMS,
boolean globalFailure,
boolean isRootCause) {
Expand Down

0 comments on commit ad3f13f

Please sign in to comment.