Skip to content

Commit 1206b55

Browse files
committed
fix clippy
Signed-off-by: Somtochi Onyekwere <somtochionyekwere@gmail.com>
1 parent c8be2ee commit 1206b55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/corro-types/src/pubsub.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1436,13 +1436,13 @@ impl Matcher {
14361436
}
14371437
Err(e) => {
14381438
warn!(sub_id = %self.id, "could not complete initial query: {e}");
1439-
_ = self
1439+
self
14401440
.evt_tx
14411441
.send(QueryEvent::Error(e.to_compact_string()))
14421442
.await
14431443
.map_err(|_| MatcherError::EventReceiverClosed)?;
14441444

1445-
return Err(e.into());
1445+
return Err(e);
14461446
}
14471447
};
14481448

0 commit comments

Comments
 (0)