mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Bug #1222: Clarify new circuit after sleep notice
("Application request when we're believed to be offline." -> "Application request when we haven't used client functionality lately.")
This commit is contained in:
parent
15424bf800
commit
1470eb2e91
5
changes/bug1222
Normal file
5
changes/bug1222
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
o Minor bugfixes:
|
||||||
|
- #1222: Change "Application request when we're believed to be
|
||||||
|
offline." notice to "Application request when we haven't used
|
||||||
|
client functionality lately.", to clarify that it's not an error.
|
||||||
|
|
@ -1184,13 +1184,13 @@ circuit_get_open_circ_or_launch(edge_connection_t *conn,
|
|||||||
* as loudly. the user doesn't even know it's happening. */
|
* as loudly. the user doesn't even know it's happening. */
|
||||||
if (options->UseBridges && bridges_known_but_down()) {
|
if (options->UseBridges && bridges_known_but_down()) {
|
||||||
log_fn(severity, LD_APP|LD_DIR,
|
log_fn(severity, LD_APP|LD_DIR,
|
||||||
"Application request when we're believed to be "
|
"Application request when we haven't used client functionality "
|
||||||
"offline. Optimistically trying known bridges again.");
|
"lately. Optimistically trying known bridges again.");
|
||||||
bridges_retry_all();
|
bridges_retry_all();
|
||||||
} else if (!options->UseBridges || any_bridge_descriptors_known()) {
|
} else if (!options->UseBridges || any_bridge_descriptors_known()) {
|
||||||
log_fn(severity, LD_APP|LD_DIR,
|
log_fn(severity, LD_APP|LD_DIR,
|
||||||
"Application request when we're believed to be "
|
"Application request when we haven't used client functionality "
|
||||||
"offline. Optimistically trying directory fetches again.");
|
"lately. Optimistically trying directory fetches again.");
|
||||||
routerlist_retry_directory_downloads(time(NULL));
|
routerlist_retry_directory_downloads(time(NULL));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user