File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @hyperdx/api " : patch
3
+ " @hyperdx/app " : patch
4
+ ---
5
+
6
+ fix: use '--kill-others-on-fail' to prevent processes from terminating when RUN_SCHEDULED_TASKS_EXTERNALLY is enabled
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ opampsupervisor --config /etc/otel/supervisor.yaml > /var/log/otel-collector.log
63
63
64
64
# Start HyperDX app
65
65
npx concurrently \
66
- " --kill-others" \
66
+ " --kill-others-on-fail " \
67
67
" --names=API,APP,ALERT-TASK" \
68
68
" PORT=${HYPERDX_API_PORT:- 8000} HYPERDX_APP_PORT=${HYPERDX_APP_PORT:- 8080} node -r ./packages/api/tracing ./packages/api/index" \
69
69
" cd ./packages/app/packages/app && HOSTNAME='0.0.0.0' HYPERDX_API_PORT=${HYPERDX_API_PORT:- 8000} PORT=${HYPERDX_APP_PORT:- 8080} node server.js" \
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ echo ""
13
13
14
14
# Use concurrently to run both the API and App servers
15
15
npx concurrently \
16
- " --kill-others" \
16
+ " --kill-others-on-fail " \
17
17
" --names=API,APP,ALERT-TASK" \
18
18
" PORT=${HYPERDX_API_PORT:- 8000} HYPERDX_APP_PORT=${HYPERDX_APP_PORT:- 8080} node -r ./packages/api/tracing ./packages/api/index" \
19
19
" cd ./packages/app/packages/app && HOSTNAME='0.0.0.0' HYPERDX_API_PORT=${HYPERDX_API_PORT:- 8000} PORT=${HYPERDX_APP_PORT:- 8080} node server.js" \
You can’t perform that action at this time.
0 commit comments