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
It's currently possible to run the dev command in multiple different sessions at the same time, which causes all sorts of issues, including:
Cannot find module dev-run-worker.mjs error
Some runs getting "stuck" while others work
We should add a "file lock" mechanism on the dev command to prevent this. This would create a file in .trigger/dev.lock with the pid of the dev CLI process and if it already exists, we would exit with a helpful message about how to recover from this issue (or even better, give an option to stop the other dev CLI process).
The text was updated successfully, but these errors were encountered:
It's currently possible to run the
dev
command in multiple different sessions at the same time, which causes all sorts of issues, including:We should add a "file lock" mechanism on the dev command to prevent this. This would create a file in
.trigger/dev.lock
with thepid
of the dev CLI process and if it already exists, we would exit with a helpful message about how to recover from this issue (or even better, give an option to stop the other dev CLI process).The text was updated successfully, but these errors were encountered: