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 55383c7 commit 580c031Copy full SHA for 580c031
src/sidekiq/mod.rs
@@ -187,7 +187,8 @@ impl Client {
187
188
fn raw_push(&self, payloads: Vec<Job>) -> Result<(), ClientError> {
189
let ref p = payloads[0];
190
- let to_push = payloads.iter().map(|entry| serde_json::to_string(&entry).unwrap()).collect::<Vec<_>>();
+ let to_push =
191
+ payloads.iter().map(|entry| serde_json::to_string(&entry).unwrap()).collect::<Vec<_>>();
192
match self.connect() {
193
Ok(conn) => {
194
redis::pipe()
0 commit comments