Don't panic if file manager thread is unreachable when cleaning up Blobs.

This commit is contained in:
Josh Matthews 2019-07-29 16:03:29 -04:00 committed by GitHub
parent 7a570a7322
commit 9e18166550
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -296,7 +296,7 @@ impl Blob {
let msg = FileManagerThreadMsg::DecRef(f.id.clone(), origin, tx);
self.send_to_file_manager(msg);
let _ = rx.recv().unwrap();
let _ = rx.recv();
}
}