Apps not being properly killed on Ctrl+ C #9871
-
SummarySometimes Turborepo leaves my processes alive when I try to finish the task with Ctrl + C. Not only I can see them in the task manager, but when I try to run my servers again, some will say the port is already in use. This has happened to me for a long time now, and I'm getting tired of manually killing processes all the time. Below is my Additional information{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"dev:preview": {
"dependsOn": ["@quacker/client#build"]
}
}
} ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Do any of these sound similar to your case? If so, can you provide a full reproduction on the Issue that sounds related to yours? If not, it would be great if you could open a new Issue. Either way, I'll close this discussion, as this sounds more like a bug report than a discussion. |
Beta Was this translation helpful? Give feedback.
Do any of these sound similar to your case? If so, can you provide a full reproduction on the Issue that sounds related to yours?
If not, it would be great if you could open a new Issue. Either way, I'll close this discussion, as this sounds more like a bug report than a discussion.