mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue