Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix condition to warn about IPC handle (#1143)
I have an extension that always shows the following warning (actual path differs each time): > WARNING: IPC handle "/var/folders/w_/zfvfxj_x3nbd8wlj9p4ck3xc0000gn/T/vscode-d7124c14bae4868834641c7c08175ab90b7b0993a8.sock" is longer than 103 characters. This path's length is 103 characters, which is the safe limit for macOS [1]. However the warning is still displayed because of the condition `>=` was used [2]. [1] https://nodejs.org/api/net.html#identifying-paths-for-ipc-connections [2] bbd65f6 Co-authored-by: Dirk Bäumer <[email protected]>
- Loading branch information