This is an automated email from the ASF dual-hosted git repository.
kkloudas pushed a commit to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.9 by this push:
new ff6b350 [FLINK-14683] Fix RemoteStreamEnvironment's constructor
ff6b350 is described below
commit ff6b350e39c1f3d24dddd469e627d066a2d7d22f
Author: Kostas Kloudas <[email protected]>
AuthorDate: Thu Dec 19 19:35:53 2019 +0100
[FLINK-14683] Fix RemoteStreamEnvironment's constructor
---
.../apache/flink/streaming/api/environment/RemoteStreamEnvironment.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/RemoteStreamEnvironment.java
b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/RemoteStreamEnvironment.java
index 95256e3..f843668 100644
---
a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/RemoteStreamEnvironment.java
+++
b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/RemoteStreamEnvironment.java
@@ -139,7 +139,7 @@ public class RemoteStreamEnvironment extends
StreamExecutionEnvironment {
* The protocol must be supported by the {@link
java.net.URLClassLoader}.
*/
public RemoteStreamEnvironment(String host, int port, Configuration
clientConfiguration, String[] jarFiles, URL[] globalClasspaths) {
- this(host, port, clientConfiguration, jarFiles, null, null);
+ this(host, port, clientConfiguration, jarFiles,
globalClasspaths, null);
}
/**