You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ba...@apache.org on 2020/08/13 13:34:13 UTC

[systemds] branch master updated: [MINOR] Fix startLocalFedWorker

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

baunsgaard pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/master by this push:
     new 3e9752c  [MINOR] Fix startLocalFedWorker
3e9752c is described below

commit 3e9752c5d0049589e5b7c872bb9d4876b018f96a
Author: baunsgaard <ba...@tugraz.at>
AuthorDate: Thu Aug 13 15:33:48 2020 +0200

    [MINOR] Fix startLocalFedWorker
---
 src/test/java/org/apache/sysds/test/AutomatedTestBase.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/sysds/test/AutomatedTestBase.java b/src/test/java/org/apache/sysds/test/AutomatedTestBase.java
index f57b944..4e55248 100644
--- a/src/test/java/org/apache/sysds/test/AutomatedTestBase.java
+++ b/src/test/java/org/apache/sysds/test/AutomatedTestBase.java
@@ -1307,10 +1307,9 @@ public abstract class AutomatedTestBase {
 		try {
 			t = new Thread(() -> {
 				try {
-					DMLScript.main(finalArguments);
+					main(finalArguments);
 				}
 				catch(IOException e) {
-
 				}
 			});
 			t.start();