feat(backend): missing return statement

This commit is contained in:
Morgan Funtowicz 2024-11-30 23:16:46 +01:00
parent 87272ffe39
commit 702dc9cd05

View File

@ -52,6 +52,7 @@ namespace huggingface::tgi::backends::trtllm {
return *maybe_request_id;
} else {
SPDLOG_WARN("[FFI] Failed to submit request to the executor");
return maybe_request_id.error();
}
}
@ -60,6 +61,4 @@ namespace huggingface::tgi::backends::trtllm {
inner_.cancel(requestId);
}
};
}