Skip to content

Commit

Permalink
[Fix] fix configuration key error (DataLinkDC#3844)
Browse files Browse the repository at this point in the history
Signed-off-by: Zzm0809 <[email protected]>
  • Loading branch information
Zzm0809 authored Sep 28, 2024
1 parent dcc1b50 commit 83878f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ public static Configuration.OptionBuilder key(Status status) {
.stringType()
.defaultValue(System.getProperty("dinkyAddr"))
.note(Status.SYS_ENV_SETTINGS_DINKYADDR_NOTE);
private final Configuration<String> dinkyToken = key(Status.SYS_ENV_SETTINGS_DINKYTOKEN_NOTE)
private final Configuration<String> dinkyToken = key(Status.SYS_ENV_SETTINGS_DINKYTOKEN)
.stringType()
.defaultValue("efda1551-7958-4e0f-80a8-dfd107df3e38")
.note(Status.SYS_ENV_SETTINGS_DINKYTOKEN);
.note(Status.SYS_ENV_SETTINGS_DINKYTOKEN_NOTE);

private final Configuration<Integer> jobReSendDiffSecond = key(Status.SYS_ENV_SETTINGS_JOB_RESEND_DIFF_SECOND)
.intType()
Expand Down

0 comments on commit 83878f4

Please sign in to comment.