Skip to content

Commit 4314e09

Browse files
Fixing issue (#127074) (#127122)
1 parent 63d7cd4 commit 4314e09

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -609,10 +609,10 @@ public void updateModelTransaction(Model newModel, Model existingModel, ActionLi
609609
format(
610610
"Failed to rollback while handling failure to update inference endpoint [%s]. "
611611
+ "Endpoint may be in an inconsistent state due to [%s]",
612-
inferenceEntityId
612+
inferenceEntityId,
613+
configResponse.buildFailureMessage()
613614
),
614-
RestStatus.INTERNAL_SERVER_ERROR,
615-
configResponse.buildFailureMessage()
615+
RestStatus.INTERNAL_SERVER_ERROR
616616
)
617617
);
618618
} else {

0 commit comments

Comments
 (0)