Skip to content

Commit

Permalink
fix: reading serialized value in json converter (#414)
Browse files Browse the repository at this point in the history
Co-authored-by: Georgy Litvinov <[email protected]>
  • Loading branch information
litvinovg and litvinovg authored Aug 11, 2023
1 parent 00f3cd8 commit 8e926dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public static void readParam(DataStore dataStore, ReadContext ctx, String name,
String paramPath = getReadPath(name, param, procedure);
JsonNode node = ctx.read(paramPath, JsonNode.class);
Data data = new Data(param);
data.setRawString(node.toString());
data.setRawString(node.asText());
data.earlyInitialization();
dataStore.addData(name, data);
}
Expand Down

0 comments on commit 8e926dc

Please sign in to comment.