We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd61cea commit 5dd9e10Copy full SHA for 5dd9e10
plugin/src/main/java/org/opensearch/ml/utils/MLNodeUtils.java
@@ -116,6 +116,8 @@ public static String processRemoteInferenceInputDataSetParametersValue(String in
116
JsonNode parsedValue = mapper.readTree(textValue);
117
// If successful, replace the string with the parsed JSON
118
parametersNode.set(key, parsedValue);
119
+ } else {
120
+ parametersNode.set(key, value);
121
}
122
} catch (IOException e) {
123
// If parsing fails, it's not a valid JSON string, so keep it as is
0 commit comments