You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting a vanilla vibe server goes fine until you press ctrl+c
Then I get:
Running ./services/api/bin/api
[main(----) INF] Listening for requests on http://0.0.0.0:8080/
^C[main(----) INF] Received signal 2. Shutting down.
And I can't restart the server sometimes as the port is in use and the app is still running in the background. So I have to find the id with ps and run kill -9 id to be able to rerun the server sometimes
Sometimes this happens:
Warning (thread: main): leaking eventcore driver because there are still active handles
FD 9 (streamListen)
FD 10 (streamListen)
FD 13 (streamSocket)
Warning (thread: main): leaking eventcore driver because there are still active handles
FD 9 (streamListen)
FD 10 (streamListen)
FD 13 (streamSocket)
Starting a vanilla vibe server goes fine until you press ctrl+c
Then I get:
And I can't restart the server sometimes as the port is in use and the app is still running in the background. So I have to find the id with
ps
and runkill -9 id
to be able to rerun the server sometimesSometimes this happens:
And then I can rerun the server.
Related to #2245
The text was updated successfully, but these errors were encountered: