From 840cb547e49503295abfbfc53561dd64af8c39fb Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Sun, 5 Oct 2014 19:17:37 +0200 Subject: [PATCH] Use "-" instead of "_" in app name when application arguments are used (Bitsquare-Alice) as Akka does not allow "_" in AkkaSystem names. --- src/main/java/io/bitsquare/BitSquare.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/bitsquare/BitSquare.java b/src/main/java/io/bitsquare/BitSquare.java index 233766cb4e..fcbb7f0115 100644 --- a/src/main/java/io/bitsquare/BitSquare.java +++ b/src/main/java/io/bitsquare/BitSquare.java @@ -68,7 +68,7 @@ public class BitSquare extends Application { Profiler.printMsgWithTime("BitSquare.main called with args " + Arrays.asList(args).toString()); if (args.length > 0) - APP_NAME = APP_NAME + "_" + args[0]; + APP_NAME = APP_NAME + "-" + args[0]; /*Thread seedNodeThread = new Thread(new Runnable() { @Override