mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-03-14 18:06:34 -04:00
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:
parent
c9b55c549f
commit
840cb547e4
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user