Skip to content

Commit 9f4b093

Browse files
Fixing issue (#127074) (#127124)
1 parent 2466f90 commit 9f4b093

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
@@ -495,10 +495,10 @@ public void updateModelTransaction(Model newModel, Model existingModel, ActionLi
495495
format(
496496
"Failed to rollback while handling failure to update inference endpoint [%s]. "
497497
+ "Endpoint may be in an inconsistent state due to [%s]",
498-
inferenceEntityId
498+
inferenceEntityId,
499+
configResponse.buildFailureMessage()
499500
),
500-
RestStatus.INTERNAL_SERVER_ERROR,
501-
configResponse.buildFailureMessage()
501+
RestStatus.INTERNAL_SERVER_ERROR
502502
)
503503
);
504504
} else {

0 commit comments

Comments
 (0)