mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
If out-of-disk when saving a consensus cache entry, don't BUG.
Just warn instead. Fixes bug 24859.
This commit is contained in:
parent
7f2e23e7ac
commit
9c2bc441f8
2 changed files with 8 additions and 1 deletions
4
changes/bug24859
Normal file
4
changes/bug24859
Normal file
|
@ -0,0 +1,4 @@
|
|||
o Minor bugfixes (logging):
|
||||
- Don't treat inability to store a cached consensus object as a
|
||||
bug: it can happen normally when we are out of disk space.
|
||||
Fixes bug 24859; bugfix on 0.3.1.1-alpha.
|
|
@ -1310,8 +1310,11 @@ store_multiple(consensus_cache_entry_handle_t **handles_out,
|
|||
labels,
|
||||
body_out,
|
||||
bodylen_out);
|
||||
if (BUG(ent == NULL))
|
||||
if (ent == NULL) {
|
||||
log_warn(LD_FS, "Unable to store object %s compressed with %s.",
|
||||
description, methodname);
|
||||
continue;
|
||||
}
|
||||
|
||||
status = CDM_DIFF_PRESENT;
|
||||
handles_out[i] = consensus_cache_entry_handle_new(ent);
|
||||
|
|
Loading…
Add table
Reference in a new issue