Don't allow having two node modules use the same socket

This commit is contained in:
Andrew Ferrazzutti 2022-04-08 05:15:06 -04:00
parent 3abb296109
commit 37c983ce0b
1 changed files with 0 additions and 3 deletions

View File

@ -52,9 +52,6 @@ export default class ClientManager {
} catch (err) {
await fs.promises.mkdir(path.dirname(socketPath), 0o700)
}
try {
await fs.promises.unlink(socketPath)
} catch (err) {}
await promisify(cb => this.server.listen(socketPath, cb))
await fs.promises.chmod(socketPath, 0o700)
this.log("Now listening at", socketPath)