This is an automated email from the ASF dual-hosted git repository.
chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 265a0a0 [hotfix] Fix ArchivedExecutionConfigBuilder#setMaxParallelism
265a0a0 is described below
commit 265a0a0708ae743c63505bb02e0659984a565fbb
Author: zhangjiaogg <[email protected]>
AuthorDate: Mon Jan 17 18:20:40 2022 +0800
[hotfix] Fix ArchivedExecutionConfigBuilder#setMaxParallelism
---
.../rest/handler/legacy/utils/ArchivedExecutionConfigBuilder.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/legacy/utils/ArchivedExecutionConfigBuilder.java
b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/legacy/utils/ArchivedExecutionConfigBuilder.java
index d557671c..498cd55 100644
---
a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/legacy/utils/ArchivedExecutionConfigBuilder.java
+++
b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/legacy/utils/ArchivedExecutionConfigBuilder.java
@@ -49,7 +49,7 @@ public class ArchivedExecutionConfigBuilder {
return this;
}
- public ArchivedExecutionConfigBuilder setMaxParallelism(int parallelism) {
+ public ArchivedExecutionConfigBuilder setMaxParallelism(int
maxParallelism) {
this.maxParallelism = maxParallelism;
return this;
}