sam-perez
sam-perez
We've been noticing some connection issues in production and have decided to experiment with retrying connections via `socket.reconnectStrategy`. After adding in a simple retry strategy, I wrote a test to...
Related to https://github.com/prettier/plugin-ruby/issues/1463
Affected line of code: ``` return new Promise((resolve, reject) => { const interval = setInterval(() => { if (fs.existsSync(filepath)) { const connectionJSON = fs.readFileSync(filepath).toString("utf-8"); resolve({ serverPID: server.pid, connectionFilepath: filepath, connectionOptions:...