Skip to content

Commit

Permalink
Pass the mvnd.daemon.storage system property to the daemon as it is u…
Browse files Browse the repository at this point in the history
…sed to store daemon log events
  • Loading branch information
gnodet committed Nov 6, 2020
1 parent 5a7bab5 commit b78d4c6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ private Process startDaemon(String uid) {
args.add(Environment.LOGBACK_CONFIGURATION_FILE
.asCommandLineProperty(parameters.logbackConfigurationPath().toString()));
args.add(Environment.DAEMON_UID.asCommandLineProperty(uid));
args.add(Environment.MVND_DAEMON_STORAGE.asCommandLineProperty(parameters.daemonStorage().toString()));
args.add(Environment.DAEMON_REGISTRY.asCommandLineProperty(parameters.registry().toString()));
args.addAll(parameters.getDaemonCommandLineProperties());
args.add(MavenDaemon.class.getName());
Expand Down

0 comments on commit b78d4c6

Please sign in to comment.