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/05/26 15:22:30 UTC

[incubator-streampipes] branch dev updated: [hotfix] Remove logging output of health check

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


The following commit(s) were added to refs/heads/dev by this push:
     new 2869672  [hotfix] Remove logging output of health check
2869672 is described below

commit 2869672a0bdfffa4484041b10a2778b1319a975d
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Wed May 26 17:22:13 2021 +0200

    [hotfix] Remove logging output of health check
---
 .../java/org/apache/streampipes/manager/health/PipelineHealthCheck.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/streampipes-pipeline-management/src/main/java/org/apache/streampipes/manager/health/PipelineHealthCheck.java b/streampipes-pipeline-management/src/main/java/org/apache/streampipes/manager/health/PipelineHealthCheck.java
index 50739fb..c386840 100644
--- a/streampipes-pipeline-management/src/main/java/org/apache/streampipes/manager/health/PipelineHealthCheck.java
+++ b/streampipes-pipeline-management/src/main/java/org/apache/streampipes/manager/health/PipelineHealthCheck.java
@@ -46,7 +46,6 @@ public class PipelineHealthCheck implements Runnable {
   }
 
   public void checkAndRestorePipelineElements() {
-    LOG.info("Performing health check...");
     List<Pipeline> runningPipelines = getRunningPipelines();
 
     if (runningPipelines.size() > 0) {