diff options
author | Roger Dingledine <arma@torproject.org> | 2010-09-12 00:20:00 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2010-09-12 00:20:00 -0400 |
commit | b4942e34352dbe5dc3f3b4e0da22f402a4452ca9 (patch) | |
tree | fcb4ab1c2c57cb26b2fda2747557c001e0447e2c | |
parent | 608d1614b92045ffbaf44b6d4e93eae4036e7bac (diff) | |
download | tor-b4942e34352dbe5dc3f3b4e0da22f402a4452ca9.tar tor-b4942e34352dbe5dc3f3b4e0da22f402a4452ca9.tar.gz |
fix regression introduced by 1a65bdd2
noticed while reviewing hoganrobert/bug1138
-rw-r--r-- | changes/1a65bdd2-regression | 6 | ||||
-rw-r--r-- | src/or/directory.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/changes/1a65bdd2-regression b/changes/1a65bdd2-regression new file mode 100644 index 000000000..0a7436d81 --- /dev/null +++ b/changes/1a65bdd2-regression @@ -0,0 +1,6 @@ + o Minor bugfixes: + - Fix a regression introduced in 0.2.2.7-alpha that marked relays + down if a directory fetch fails and you've configured either + bridges or EntryNodes. The intent was to mark the relay as down + _unless_ you're using bridges or EntryNodes, since if you are + then you could quickly run out of entry points. diff --git a/src/or/directory.c b/src/or/directory.c index a3e575ac9..e9fcb5ee1 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -582,7 +582,7 @@ connection_dir_request_failed(dir_connection_t *conn) if (directory_conn_is_self_reachability_test(conn)) { return; /* this was a test fetch. don't retry. */ } - if (entry_list_is_constrained(get_options())) + if (!entry_list_is_constrained(get_options())) router_set_status(conn->identity_digest, 0); /* don't try him again */ if (conn->_base.purpose == DIR_PURPOSE_FETCH_V2_NETWORKSTATUS) { log_info(LD_DIR, "Giving up on directory server at '%s'; retrying", |