Use "-" instead of "_" in app name when application arguments are used (Bitsquare-Alice) as Akka does not allow "_" in AkkaSystem names.

This commit is contained in:
Manfred Karrer 2014-10-05 19:17:37 +02:00
parent c9b55c549f
commit 840cb547e4

View file

@ -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