Skip to content

Commit

Permalink
CB-4491 deserialization fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yagudin10 committed Jan 16, 2024
1 parent 1da6948 commit 504b989
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ protected void parseConfiguration(Map<String, Object> configProps) throws DBExce
enableSecurityManager);
//SM config
gson.fromJson(
gson.toJsonTree(JSONUtils.getObject(serverConfig, CBConstants.PARAM_SM_CONFIGURATION)),
gson.toJson(JSONUtils.getObject(serverConfig, CBConstants.PARAM_SM_CONFIGURATION)),
SMControllerConfiguration.class
);
// App config
Expand Down

0 comments on commit 504b989

Please sign in to comment.