Skip to content

Commit

Permalink
remove debugging print
Browse files Browse the repository at this point in the history
Signed-off-by: b4sjoo <[email protected]>
  • Loading branch information
b4sjoo committed Aug 28, 2024
1 parent d751fa1 commit 7a37236
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions plugin/src/main/java/org/opensearch/ml/utils/MLNodeUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,10 @@ public static String processRemoteInferenceInputDataSetParametersValue(String in

parametersNode.fields().forEachRemaining(entry -> {
String key = entry.getKey();
System.out.println(key);
JsonNode value = entry.getValue();

if (value.isTextual()) {
String textValue = value.asText();
System.out.println(textValue);
try {
// Try to parse the string as JSON
JsonNode parsedValue = mapper.readTree(textValue);
Expand Down

0 comments on commit 7a37236

Please sign in to comment.