You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by go...@apache.org on 2021/08/11 19:13:08 UTC

[incubator-streampipes] branch edge-extensions updated: Fixed duplicate logging in migration evaluation

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

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


The following commit(s) were added to refs/heads/edge-extensions by this push:
     new d043985  Fixed duplicate logging in migration evaluation
d043985 is described below

commit d0439855d544c97b67143ff73d11b05ceff7ac49
Author: daniel-gomm <da...@outlook.de>
AuthorDate: Wed Aug 11 21:12:55 2021 +0200

    Fixed duplicate logging in migration evaluation
---
 .../org/apache/streampipes/performance/performancetest/GenericTest.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/streampipes-performance-tests/src/main/java/org/apache/streampipes/performance/performancetest/GenericTest.java b/streampipes-performance-tests/src/main/java/org/apache/streampipes/performance/performancetest/GenericTest.java
index 07aa978..6d6ed70 100644
--- a/streampipes-performance-tests/src/main/java/org/apache/streampipes/performance/performancetest/GenericTest.java
+++ b/streampipes-performance-tests/src/main/java/org/apache/streampipes/performance/performancetest/GenericTest.java
@@ -99,7 +99,6 @@ public class GenericTest implements Test{
             long migrationDuration = System.nanoTime() - beforeMigration;
             if(testType.equals("Migration")){
                 line = new Object[]{System.currentTimeMillis(), "Migration duration", nrRuns, migrationDuration, migrationDuration/1000000000.0,migrationNodes.a, migrationNodes.b, true};
-                evalLogger.logMQTT(testType, line);
             }
             System.out.println(migrationMessage.getTitle());
             if (!migrationMessage.isSuccess()) {