We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d751fa1 commit 7a37236Copy full SHA for 7a37236
plugin/src/main/java/org/opensearch/ml/utils/MLNodeUtils.java
@@ -104,12 +104,10 @@ public static String processRemoteInferenceInputDataSetParametersValue(String in
104
105
parametersNode.fields().forEachRemaining(entry -> {
106
String key = entry.getKey();
107
- System.out.println(key);
108
JsonNode value = entry.getValue();
109
110
if (value.isTextual()) {
111
String textValue = value.asText();
112
- System.out.println(textValue);
113
try {
114
// Try to parse the string as JSON
115
JsonNode parsedValue = mapper.readTree(textValue);
0 commit comments