Removed the unnecessary Result on queue send.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
This commit is contained in:
@@ -446,10 +446,7 @@ impl DocRegistry {
|
||||
self.queue.forward(sender_id, msg.clone());
|
||||
}
|
||||
}
|
||||
Err(err) => self
|
||||
.queue
|
||||
.send(msg.response(MsgAction::Error(err)))
|
||||
.unwrap(),
|
||||
Err(err) => self.queue.send(msg.response(MsgAction::Error(err))),
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user