Skip to content

Commit 838eaa9

Browse files
committed
Merge branch 'dl/credential-cache-socket-in-xdg-cache'
A recently added test for the "credential-cache" helper revealed that EOF detection done around the time the connection to the cache daemon is torn down were flaky. This was fixed by reacting to ECONNRESET and behaving as if we got an EOF. * dl/credential-cache-socket-in-xdg-cache: credential-cache: interpret an ECONNRESET as an EOF
2 parents aec68c3 + 1f180e5 commit 838eaa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

credential-cache.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ static int send_request(const char *socket, const struct strbuf *out)
2525
int r;
2626

2727
r = read_in_full(fd, in, sizeof(in));
28-
if (r == 0)
28+
if (r == 0 || (r < 0 && errno == ECONNRESET))
2929
break;
3030
if (r < 0)
3131
die_errno("read error from cache daemon");

0 commit comments

Comments
 (0)