Hi,
I'm using the latest nodejs agent installed by Cluster Agent in AKS.
I run NextJS application with the following script:
"start:production": "npm-run-all --serial bootstrap next:build next:start"
Looks like AppDynamics is trying to connect to the first command in the script in this scenario to "bootstrap" and it looks like it blocks the application from running the next one.
It works fine with 1 command in the startup script, but with 2,3, etc it gets stuck on the first one
Any idea how to get around the problem?
^ Edited by @Ryan.Paredez for some clarity
... View more