Skip to content

Commit f421103

Browse files
Fixing issue
1 parent 72b4ed2 commit f421103

File tree

1 file changed

+3
-3
lines changed
  • x-pack/plugin/inference/src/main/java/org/elasticsearch/xpack/inference/registry

1 file changed

+3
-3
lines changed

x-pack/plugin/inference/src/main/java/org/elasticsearch/xpack/inference/registry/ModelRegistry.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -613,10 +613,10 @@ public void updateModelTransaction(Model newModel, Model existingModel, ActionLi
613613
format(
614614
"Failed to rollback while handling failure to update inference endpoint [%s]. "
615615
+ "Endpoint may be in an inconsistent state due to [%s]",
616-
inferenceEntityId
616+
inferenceEntityId,
617+
configResponse.buildFailureMessage()
617618
),
618-
RestStatus.INTERNAL_SERVER_ERROR,
619-
configResponse.buildFailureMessage()
619+
RestStatus.INTERNAL_SERVER_ERROR
620620
)
621621
);
622622
} else {

0 commit comments

Comments
 (0)