Skip to content

Commit

Permalink
[FLINK-34149][Runtime/Checkpointing] Fix SplitEnumeratorContext compa…
Browse files Browse the repository at this point in the history
…tibility issue

This closes #24146.
  • Loading branch information
yunfengzhou-hub authored Jan 19, 2024
1 parent 8dd28a2 commit b309ceb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,5 +195,7 @@ <T> void callAsync(
* source is considered to have isProcessingBacklog=false by default.
*/
@PublicEvolving
void setIsProcessingBacklog(boolean isProcessingBacklog);
default void setIsProcessingBacklog(boolean isProcessingBacklog) {
throw new UnsupportedOperationException();
}
}

0 comments on commit b309ceb

Please sign in to comment.