We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbd2128 commit 3accd7dCopy full SHA for 3accd7d
zstor/src/actors/zstor.rs
@@ -340,13 +340,11 @@ impl Handler<Rebuild> for ZstorActor {
340
if let Some(data) = data {
341
if data.as_slice() == shards[i].as_ref() {
342
used_backends.push((key, Some(old_metadata.shards()[i].zdb().clone())));
343
- debug!("Shard {} is the SAME", i);
344
} else {
345
used_backends.push((key, None));
346
warn!("Shard {} is DIFFERENT", i);
347
}
348
349
- debug!("Shard {} is MISSING", i);
350
351
352
0 commit comments