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 2021/12/01 08:07:49 UTC

[incubator-streampipes] branch dev updated (d7abfab -> 49edf9c)

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

riemer pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git.


    from d7abfab  [hotfix] Remove port mapping from influx config
     new b91402f  [hotfix] Add all-extensions-jvm to runConfigurations
     new 49edf9c  [hotfix] Improve logging of MasterRestClient

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../{all_pipeline_elements_jvm.xml => all_extensions_jvm.xml} | 11 ++++-------
 .../connect/container/worker/management/MasterRestClient.java |  2 +-
 2 files changed, 5 insertions(+), 8 deletions(-)
 copy .idea/runConfigurations/{all_pipeline_elements_jvm.xml => all_extensions_jvm.xml} (71%)

[incubator-streampipes] 01/02: [hotfix] Add all-extensions-jvm to runConfigurations

Posted by ri...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b91402f2f332cb02411f73e39b29c117e7236153
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Wed Dec 1 09:07:07 2021 +0100

    [hotfix] Add all-extensions-jvm to runConfigurations
---
 .idea/runConfigurations/all_extensions_jvm.xml | 30 ++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/.idea/runConfigurations/all_extensions_jvm.xml b/.idea/runConfigurations/all_extensions_jvm.xml
new file mode 100644
index 0000000..20063d0
--- /dev/null
+++ b/.idea/runConfigurations/all_extensions_jvm.xml
@@ -0,0 +1,30 @@
+<component name="ProjectRunConfigurationManager">
+  <configuration default="false" name="all-extensions-jvm" type="Application" factoryName="Application">
+    <envs>
+      <env name="SP_PORT" value="7023" />
+      <env name="SP_DEBUG" value="true" />
+      <env name="SP_COUCHDB_HOST" value="localhost" />
+      <env name="SP_JMS_HOST" value="localhost" />
+      <env name="SP_JMS_PORT" value="61616" />
+      <env name="SP_DATA_LAKE_HOST" value="localhost" />
+      <env name="SP_DATA_LAKE_PORT" value="8086" />
+      <env name="SP_IMAGE_STORAGE_LOCATION" value=".streampipes/spImages/" />
+    </envs>
+    <option name="MAIN_CLASS_NAME" value="org.apache.streampipes.extensions.all.jvm.AllExtensionsInit" />
+    <module name="streampipes-extensions-all-jvm" />
+    <shortenClasspath name="MANIFEST" />
+    <extension name="net.ashald.envfile">
+      <option name="IS_ENABLED" value="false" />
+      <option name="IS_SUBST" value="false" />
+      <option name="IS_PATH_MACRO_SUPPORTED" value="false" />
+      <option name="IS_IGNORE_MISSING_FILES" value="false" />
+      <option name="IS_ENABLE_EXPERIMENTAL_INTEGRATIONS" value="false" />
+      <ENTRIES>
+        <ENTRY IS_ENABLED="true" PARSER="runconfig" />
+      </ENTRIES>
+    </extension>
+    <method v="2">
+      <option name="Make" enabled="true" />
+    </method>
+  </configuration>
+</component>
\ No newline at end of file

[incubator-streampipes] 02/02: [hotfix] Improve logging of MasterRestClient

Posted by ri...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 49edf9c8492684ff5f19b0cf316a1d117c812915
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Wed Dec 1 09:07:33 2021 +0100

    [hotfix] Improve logging of MasterRestClient
---
 .../connect/container/worker/management/MasterRestClient.java           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streampipes-connect-container-worker/src/main/java/org/apache/streampipes/connect/container/worker/management/MasterRestClient.java b/streampipes-connect-container-worker/src/main/java/org/apache/streampipes/connect/container/worker/management/MasterRestClient.java
index df98d5d..5c4e4b1 100644
--- a/streampipes-connect-container-worker/src/main/java/org/apache/streampipes/connect/container/worker/management/MasterRestClient.java
+++ b/streampipes-connect-container-worker/src/main/java/org/apache/streampipes/connect/container/worker/management/MasterRestClient.java
@@ -37,7 +37,7 @@ public class MasterRestClient {
             client.adminApi().registerAdapters(allAvailableAdapters);
             return true;
         } catch (Exception e) {
-            LOG.info("Could not register adapter at url " , e);
+            LOG.error("Could not register adapter at url - is a 'StreamPipes Core' service running?" , e);
             return false;
         }
     }