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 b7bcacd commit 353540bCopy full SHA for 353540b
src/python_be.cc
@@ -2426,10 +2426,9 @@ TRITONBACKEND_ModelInstanceReady(TRITONBACKEND_ModelInstance* instance)
2426
2427
if (!instance_state->Stub()->StubActive()) {
2428
return TRITONSERVER_ErrorNew(
2429
- TRITONSERVER_ERROR_INTERNAL,
2430
- (std::string("Stub process '") + instance_state->Name() +
2431
- "' is not alive")
2432
- .c_str());
+ TRITONSERVER_ERROR_INTERNAL, (std::string("Stub process '") +
+ instance_state->Name() + "' is not alive")
+ .c_str());
2433
}
2434
2435
if (!instance_state->IsStubProcessAlive()) {
0 commit comments