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 2f92580 commit ee6dba1Copy full SHA for ee6dba1
commons/zenoh-shm/src/metadata/storage.rs
@@ -47,6 +47,8 @@ impl MetadataStorage {
47
})
48
}
49
50
+ // See ordering implementation for OwnedMetadataDescriptor
51
+ #[allow(clippy::mutable_key_type)]
52
fn add_segment(collection: &mut BTreeSet<OwnedMetadataDescriptor>) -> ZResult<()> {
53
let segment = Arc::new(MetadataSegment::create()?);
54
commons/zenoh-shm/src/watchdog/validator.rs
@@ -98,7 +98,7 @@ impl WatchdogValidator {
98
99
fn make_transaction(&self, transaction: Transaction) {
100
if self.cap.fetch_sub(1, std::sync::atomic::Ordering::Relaxed) == 0 {
101
- let _ = self.task.kick();
+ self.task.kick();
102
103
104
self.sender.send(transaction).unwrap();
0 commit comments