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 1f1a038 commit 9d722e0Copy full SHA for 9d722e0
src/producer/future_producer.rs
@@ -443,6 +443,7 @@ mod tests {
443
#[test]
444
fn test_future_producer_clone() {
445
let producer = ClientConfig::new().create::<FutureProducer>().unwrap();
446
+ #[allow(clippy::redundant_clone)]
447
let _producer_clone = producer.clone();
448
}
449
@@ -453,6 +454,7 @@ mod tests {
453
454
let producer = ClientConfig::new()
455
.create_with_context::<_, FutureProducer<TestContext>>(test_context)
456
.unwrap();
457
458
459
460
0 commit comments