Mercurial > hg
diff README @ 30891:b1b36c6499c2
commandserver: handle backlog before exiting
Previously, when a chg server is exiting, it does not handle connected
clients so clients may get ECONNRESET and crash:
1. client connect() # success
2. server shouldexit = True and exit
3. client recv() # ECONNRESET
d7875bfbfccb makes this race condition easier to reproduce if a lot of short
chg commands are started in parallel.
This patch fixes the above issue by unlinking the socket path to stop
queuing new connections and processing all pending connections before exit.
author | Jun Wu <quark@fb.com> |
---|---|
date | Wed, 08 Feb 2017 14:45:30 -0800 |
parents | 4b0fc75f9403 |
children | 76b171209151 |