summaryrefslogtreecommitdiff
path: root/wrap-for-bin.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2012-01-17 01:02:32 -0500
committerJunio C Hamano <gitster@pobox.com>2012-01-16 22:15:19 -0800
commit35a71f1402b40b580d985a9d7e5fb1c9ec4d0232 (patch)
tree4e37983d9fc85fc63d8ee5731b5da285d7b5b9f0 /wrap-for-bin.sh
parent06121a0a8328c8aaa7a023cf6ebb142e9dc2b45c (diff)
downloadgit-35a71f1402b40b580d985a9d7e5fb1c9ec4d0232.tar.gz
credential-cache: ignore "connection refused" errorsjk/credentials
The credential-cache helper will try to connect to its daemon over a unix socket. Originally, a failure to do so was silently ignored, and we would either give up (if performing a "get" or "erase" operation), or spawn a new daemon (for a "store" operation). But since 8ec6c8d, we try to report more errors. We detect a missing daemon by checking for ENOENT on our connection attempt. If the daemon is missing, we continue as before (giving up or spawning a new daemon). For any other error, we die and report the problem. However, checking for ENOENT is not sufficient for a missing daemon. We might also get ECONNREFUSED if a dead daemon process left a stale socket. This generally shouldn't happen, as the daemon cleans up after itself, but the daemon may not always be given a chance to do so (e.g., power loss, "kill -9"). The resulting state is annoying not just because the helper outputs an extra useless message, but because it actually blocks the helper from spawning a new daemon to replace the stale socket. Fix it by checking for ECONNREFUSED. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wrap-for-bin.sh')
0 files changed, 0 insertions, 0 deletions