Skip to content

Commit 533f7f0

Browse files
committed
Fix javaworker result service not starting
The `--debug` option is deprecated and caused the result service to not start: result_1 | [nodemon] 1.14.7 result_1 | [nodemon] to restart at any time, enter `rs` result_1 | [nodemon] watching: *.* result_1 | [nodemon] starting `node --debug server.js` result_1 | (node:20) [DEP0062] DeprecationWarning: `node --debug` and `node --debug-brk` are invalid. Please use `node --inspect` or `node --inspect-brk` instead. result_1 | [nodemon] app crashed - waiting for file changes before starting... This patch removes the `--debug` option, as it's not needed, and no longer present in the other example stacks. Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent e6c7498 commit 533f7f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-compose-javaworker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414

1515
result:
1616
build: ./result
17-
command: nodemon --debug server.js
17+
command: nodemon server.js
1818
volumes:
1919
- ./result:/app
2020
ports:

0 commit comments

Comments
 (0)