Skip to content

Commit 20c90e4

Browse files
committed
Fix clippy
1 parent 9218fab commit 20c90e4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bottlecap/src/traces/trace_processor.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,14 @@ impl TraceProcessor for ServerlessTraceProcessor {
166166
test_token: None,
167167
};
168168

169-
let send_data_builder = SendDataBuilder::new(body_size, payload, header_tags, &endpoint)
169+
SendDataBuilder::new(body_size, payload, header_tags, &endpoint)
170170
.with_compression(Compression::Zstd(6))
171171
.with_retry_strategy(RetryStrategy::new(
172172
1,
173173
100,
174174
RetryBackoffType::Exponential,
175175
None,
176-
));
177-
send_data_builder
176+
))
178177
}
179178
}
180179

0 commit comments

Comments
 (0)