Skip to content

Commit e840334

Browse files
Fixing issue (#127074)
1 parent b98a4fa commit e840334

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
@@ -605,10 +605,10 @@ public void updateModelTransaction(Model newModel, Model existingModel, ActionLi
605605
format(
606606
"Failed to rollback while handling failure to update inference endpoint [%s]. "
607607
+ "Endpoint may be in an inconsistent state due to [%s]",
608-
inferenceEntityId
608+
inferenceEntityId,
609+
configResponse.buildFailureMessage()
609610
),
610-
RestStatus.INTERNAL_SERVER_ERROR,
611-
configResponse.buildFailureMessage()
611+
RestStatus.INTERNAL_SERVER_ERROR
612612
)
613613
);
614614
} else {

0 commit comments

Comments
 (0)