Skip to content

Commit

Permalink
fix RaftConfig is always {} (#11648)
Browse files Browse the repository at this point in the history
  • Loading branch information
godhth authored Jan 17, 2024
1 parent 1943825 commit bdbc356
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public String getValOfDefault(String key, String defaultVal) {
@Override
public String toString() {
try {
return JacksonUtils.toJson(data);
return JacksonUtils.toJson(this);
} catch (Exception e) {
return String.valueOf(data);
}
Expand Down

0 comments on commit bdbc356

Please sign in to comment.