runtime-rs: Fix typo in task service

"failed to handler message" -> "failed to handle message".

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt
2023-12-04 14:16:13 +00:00
parent 8d7e0f7721
commit 45c0364d4c

View File

@@ -43,7 +43,7 @@ impl TaskService {
debug!(logger, "====> task service {:?}", &r);
let resp =
self.handler.handler_message(r).await.map_err(|err| {
ttrpc::Error::Others(format!("failed to handler message {:?}", err))
ttrpc::Error::Others(format!("failed to handle message {:?}", err))
})?;
debug!(logger, "<==== task service {:?}", &resp);
resp.try_into()