Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some users are running into "too many watched files" errors. Mainframe has already had its watch limits raised to 1m. Think i've identified a few troublesome folders. This PR tells vscode to stop watching so many files. You can get an idea of how many files you're watching (on linux) using: ``` grep inotify /proc/*/fdinfo/* 2>/dev/null| wc -l ``` This took me from 90k to about 10k after restarting vscode server (not sure if i needed to kill the server, but think i did). To kill server run in your sysbox (save and quit vscode first): ``` pkill -f '.vscode-server' ```
- Loading branch information