This is an automated email from the ASF dual-hosted git repository. tangyun pushed a commit to branch Myasuka-patch-1 in repository https://gitbox.apache.org/repos/asf/flink.git
commit d09d0db6e21ae01ce8df047c629b5789e73cea57 Author: Yun Tang <[email protected]> AuthorDate: Fri May 16 17:09:03 2025 +0800 [hotfix][javadoc] Correct the default value of chaining strategy This hotfix corrects the default value of chaining strategy in the javadocs. --- .../org/apache/flink/streaming/api/operators/ChainingStrategy.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flink-runtime/src/main/java/org/apache/flink/streaming/api/operators/ChainingStrategy.java b/flink-runtime/src/main/java/org/apache/flink/streaming/api/operators/ChainingStrategy.java index 36020cb4c80..114dc111415 100644 --- a/flink-runtime/src/main/java/org/apache/flink/streaming/api/operators/ChainingStrategy.java +++ b/flink-runtime/src/main/java/org/apache/flink/streaming/api/operators/ChainingStrategy.java @@ -24,9 +24,8 @@ import org.apache.flink.annotation.PublicEvolving; * Defines the chaining scheme for the operator. When an operator is chained to the predecessor, it * means that they run in the same thread. They become one operator consisting of multiple steps. * - * <p>The default value used by the StreamOperator is {@link #HEAD}, which means that the operator - * is not chained to its predecessor. Most operators override this with {@link #ALWAYS}, meaning - * they will be chained to predecessors whenever possible. + * <p>The default value used by the StreamOperator is {@link #ALWAYS}, which means that the operator + * will be chained to predecessors whenever possible. */ @PublicEvolving public enum ChainingStrategy {
