Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
adzialocha committed May 15, 2023
1 parent 521dd09 commit 5e721aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aquadoggo/src/replication/strategies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl Strategy for SetReconciliationStrategy {
todo!()
}

async fn handle_message(&self, message: StrategyMessage) -> Result<StrategyResult> {
async fn handle_message(&self, _message: StrategyMessage) -> Result<StrategyResult> {

Check warning on line 92 in aquadoggo/src/replication/strategies.rs

View check run for this annotation

Codecov / codecov/patch

aquadoggo/src/replication/strategies.rs#L92

Added line #L92 was not covered by tests
todo!()
}
}
6 changes: 3 additions & 3 deletions aquadoggo/src/replication/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ pub trait Strategy: std::fmt::Debug + StrategyClone {
// @TODO: we want to pass the store in here too eventually.
async fn handle_entry(

Check warning on line 30 in aquadoggo/src/replication/traits.rs

View check run for this annotation

Codecov / codecov/patch

aquadoggo/src/replication/traits.rs#L30

Added line #L30 was not covered by tests
&self,
schema_id: &SchemaId,
entry_bytes: Vec<u8>,
operation_bytes: Vec<u8>,
_schema_id: &SchemaId,
_entry_bytes: Vec<u8>,
_operation_bytes: Vec<u8>,
) -> Result<()> {
// Validation:
// Check against schema_id and target_set if entry is what we've asked for
Expand Down

0 comments on commit 5e721aa

Please sign in to comment.