You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2020/09/16 05:34:31 UTC

[incubator-streampipes-extensions] branch rel/0.67.0 updated: [hotfix] Modify jar file name in Dockerfile

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

riemer pushed a commit to branch rel/0.67.0
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git


The following commit(s) were added to refs/heads/rel/0.67.0 by this push:
     new c05e466  [hotfix] Modify jar file name in Dockerfile
c05e466 is described below

commit c05e46649c56230bdc435b7682fe583a173286a6
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Wed Sep 16 07:34:05 2020 +0200

    [hotfix] Modify jar file name in Dockerfile
---
 streampipes-processors-transformation-flink/Dockerfile                | 4 ++--
 streampipes-processors-transformation-flink/aarch64.Dockerfile        | 4 ++--
 streampipes-processors-transformation-flink/arm.Dockerfile            | 4 ++--
 streampipes-processors-transformation-flink/development/env           | 2 +-
 .../transformation/flink/config/TransformationFlinkConfig.java        | 2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/streampipes-processors-transformation-flink/Dockerfile b/streampipes-processors-transformation-flink/Dockerfile
index 72cb633..463cce7 100644
--- a/streampipes-processors-transformation-flink/Dockerfile
+++ b/streampipes-processors-transformation-flink/Dockerfile
@@ -20,6 +20,6 @@ ENV CONSUL_LOCATION consul
 
 EXPOSE 8090
 
-COPY target/streampipes-processors-transformation-flink.jar  /streampipes-processors-transformation-flink.jar
+COPY target/streampipes-processors-transformation-flink.jar  /streampipes-processing-element-container.jar
 
-ENTRYPOINT ["java", "-jar", "/streampipes-processors-transformation-flink.jar"]
+ENTRYPOINT ["java", "-jar", "/streampipes-processing-element-container.jar"]
diff --git a/streampipes-processors-transformation-flink/aarch64.Dockerfile b/streampipes-processors-transformation-flink/aarch64.Dockerfile
index 1a0334b..1eb794c 100644
--- a/streampipes-processors-transformation-flink/aarch64.Dockerfile
+++ b/streampipes-processors-transformation-flink/aarch64.Dockerfile
@@ -21,6 +21,6 @@ ENV CONSUL_LOCATION consul
 EXPOSE 8090
 
 COPY qemu-aarch64-static /usr/bin
-COPY target/streampipes-processors-transformation-flink.jar  /streampipes-processors-transformation-flink.jar
+COPY target/streampipes-processors-transformation-flink.jar  /streampipes-processing-element-container.jar
 
-ENTRYPOINT ["java", "-jar", "/streampipes-processors-transformation-flink.jar"]
+ENTRYPOINT ["java", "-jar", "/streampipes-processing-element-container.jar"]
diff --git a/streampipes-processors-transformation-flink/arm.Dockerfile b/streampipes-processors-transformation-flink/arm.Dockerfile
index f05e930..f92454a 100644
--- a/streampipes-processors-transformation-flink/arm.Dockerfile
+++ b/streampipes-processors-transformation-flink/arm.Dockerfile
@@ -21,6 +21,6 @@ ENV CONSUL_LOCATION consul
 EXPOSE 8090
 
 COPY qemu-arm-static /usr/bin
-COPY target/streampipes-processors-transformation-flink.jar  /streampipes-processors-transformation-flink.jar
+COPY target/streampipes-processors-transformation-flink.jar  /streampipes-processing-element-container.jar
 
-ENTRYPOINT ["java", "-jar", "/streampipes-processors-transformation-flink.jar"]
+ENTRYPOINT ["java", "-jar", "/streampipes-processing-element-container.jar"]
diff --git a/streampipes-processors-transformation-flink/development/env b/streampipes-processors-transformation-flink/development/env
index 7834a26..dc98a5d 100644
--- a/streampipes-processors-transformation-flink/development/env
+++ b/streampipes-processors-transformation-flink/development/env
@@ -15,6 +15,6 @@
 
 # Those parameters are used by IntelliJ to set the default consul parameters for development
 SP_PORT=6055
-SP_HOST=host.docker.internal
+SP_HOST=localhost
 SP_FLINK_DEBUG=true
 SP_DEBUG=true
diff --git a/streampipes-processors-transformation-flink/src/main/java/org/apache/streampipes/processors/transformation/flink/config/TransformationFlinkConfig.java b/streampipes-processors-transformation-flink/src/main/java/org/apache/streampipes/processors/transformation/flink/config/TransformationFlinkConfig.java
index 31319b2..477699b 100644
--- a/streampipes-processors-transformation-flink/src/main/java/org/apache/streampipes/processors/transformation/flink/config/TransformationFlinkConfig.java
+++ b/streampipes-processors-transformation-flink/src/main/java/org/apache/streampipes/processors/transformation/flink/config/TransformationFlinkConfig.java
@@ -25,7 +25,7 @@ public enum TransformationFlinkConfig implements PeConfig {
   INSTANCE;
 
   private SpConfig config;
-  public static final String JAR_FILE = "./streampipes-processors-transformation-flink.jar";
+  public static final String JAR_FILE = "./streampipes-processing-element-container.jar";
 
   private final static String service_id = "pe/org.apache.streampipes.processors.transformation.flink";
   private final static String service_name = "Processors Transformation Flink";