You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ji...@apache.org on 2019/07/30 07:37:05 UTC

[flink] branch release-1.9 updated: [hotfix][python] Change "flink-python-" to "flink-python" for the change of artifact of flink-python module (#9270)

This is an automated email from the ASF dual-hosted git repository.

jincheng 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 8405bef  [hotfix][python] Change "flink-python-" to "flink-python" for the change  of artifact of flink-python module (#9270)
8405bef is described below

commit 8405bef90214fe10f17e2e59db804963a34c7440
Author: HuangXingBo <hx...@gmail.com>
AuthorDate: Tue Jul 30 15:34:33 2019 +0800

    [hotfix][python] Change "flink-python-" to "flink-python" for the change  of artifact of flink-python module (#9270)
---
 .../src/main/java/org/apache/flink/client/program/PackagedProgram.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-clients/src/main/java/org/apache/flink/client/program/PackagedProgram.java b/flink-clients/src/main/java/org/apache/flink/client/program/PackagedProgram.java
index 648709d..629a147 100644
--- a/flink-clients/src/main/java/org/apache/flink/client/program/PackagedProgram.java
+++ b/flink-clients/src/main/java/org/apache/flink/client/program/PackagedProgram.java
@@ -485,7 +485,7 @@ public class PackagedProgram {
 					@Override
 					public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
 						FileVisitResult result = super.visitFile(file, attrs);
-						if (file.getFileName().toString().startsWith("flink-python-")) {
+						if (file.getFileName().toString().startsWith("flink-python")) {
 							pythonJarPath.add(file);
 						}
 						return result;