Skip to content

Commit b0425ac

Browse files
committed
Process.pid() is not available in Java 8
1 parent 4d88c8e commit b0425ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

grails-app/init/grails/plugin/inertia/Bootstrap.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ class BootStrap {
6161
}
6262

6363
ssrProcess = new ProcessBuilder().inheritIO().command('node', bundle).start()
64-
log.debug 'SSR process started with pid: ' + ssrProcess.pid()
64+
log.debug 'SSR process started'
6565
}
6666

6767
void stopSSR() {
68-
log.debug 'Stopping SSR process with pid: ' + ssrProcess?.pid()
68+
log.debug 'Stopping SSR process'
6969
ssrProcess?.destroy()
7070
}
7171
}

0 commit comments

Comments
 (0)