From 0ba34854835d7b03bbc79e7d72ce29421aeb817f Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Mon, 19 Apr 2004 01:59:20 +0000 Subject: [PATCH] give wedged dir conns a last chance to flush svn:r1671 --- trunk/src/or/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/trunk/src/or/main.c b/trunk/src/or/main.c index c6770aa853..039c6f0baf 100644 --- a/trunk/src/or/main.c +++ b/trunk/src/or/main.c @@ -310,6 +310,7 @@ static void run_connection_housekeeping(int i, time_t now) { conn->timestamp_created + 5*60 < now) { log_fn(LOG_INFO,"Expiring wedged directory conn (purpose %d)", conn->purpose); connection_mark_for_close(conn,0); + conn->hold_open_until_flushed = 1; /* give it a last chance */ return; }