We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd452f commit 0074c4fCopy full SHA for 0074c4f
examples/session-counter/src/main.rs
@@ -99,7 +99,7 @@ mod tests {
99
let (input_tx, input_rx) = mpsc::channel(10);
100
let (output_tx, mut output_rx) = mpsc::channel(10);
101
let keys = vec!["user123".to_string()];
102
- let mut reducer = counter;
+ let reducer = counter;
103
let reducer_task = tokio::spawn(async move {
104
reducer.session_reduce(keys, input_rx, output_tx).await;
105
});
0 commit comments