diff options
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 6f783e6e0b..1df592d93d 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1126,8 +1126,10 @@ run_scheduled_events(time_t now) circuit_close_all_marked(); /** 7. And upload service descriptors if necessary. */ - if (has_completed_circuit && !we_are_hibernating()) + if (has_completed_circuit && !we_are_hibernating()) { + rend_consider_descriptor_republication(); rend_consider_services_upload(now); + } /** 8. and blow away any connections that need to die. have to do this now, * because if we marked a conn for close and left its socket -1, then |