You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/inference/src/main/java/org/elasticsearch/xpack/inference/action/TransportPutInferenceModelAction.java
Copy file name to clipboardExpand all lines: x-pack/plugin/ml/qa/ml-inference-service-tests/src/javaRestTest/java/org/elasticsearch/xpack/ml/integration/ModelIdUniquenessIT.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,10 @@ public void testPutInferenceModelFailsWhenTrainedModelWithIdAlreadyExists() thro
29
29
assertThat(
30
30
e.getMessage(),
31
31
Matchers.containsString(
32
-
"Model IDs must be unique. Requested model ID [" + modelId + "] matches existing model IDs but must not."
32
+
"Inference endpoint IDs must be unique. Requested inference endpoint ID ["
33
+
+ modelId
34
+
+ "] matches existing trained model ID(s) but must not."
0 commit comments