Skip to content

Commit 580c031

Browse files
committed
cargo fmt
1 parent 55383c7 commit 580c031

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/sidekiq/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ impl Client {
187187

188188
fn raw_push(&self, payloads: Vec<Job>) -> Result<(), ClientError> {
189189
let ref p = payloads[0];
190-
let to_push = payloads.iter().map(|entry| serde_json::to_string(&entry).unwrap()).collect::<Vec<_>>();
190+
let to_push =
191+
payloads.iter().map(|entry| serde_json::to_string(&entry).unwrap()).collect::<Vec<_>>();
191192
match self.connect() {
192193
Ok(conn) => {
193194
redis::pipe()

0 commit comments

Comments
 (0)