-
Notifications
You must be signed in to change notification settings - Fork 686
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use temporary directory for debug sockets on NIX systems #4637
Use temporary directory for debug sockets on NIX systems #4637
Conversation
I haven't investigated much, but this feels like the wrong fix to me -- in your exact case this is going to get you under the limit, but if your user alias would be a bit longer then it wouldn't help. Isn't a better fix to move this under $TMP on OSX? |
Agreed. I have added functionality which overrides socket paths to I apologize in advance if code is not clean, I have not worked with typescript much in the past. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise LGTM. Thanks for doing this.
Fixes: #4523
This PR stores debug sockets in
/tmp/
or$TMPDIR
(if set) on Linux & OSX platforms.