Skip to content

Commit

Permalink
fix-configuration-key-error
Browse files Browse the repository at this point in the history
Signed-off-by: Zzm0809 <[email protected]>
  • Loading branch information
Zzm0809 committed Sep 27, 2024
1 parent 7abe338 commit 42d7ee5
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 42d7ee5

Please sign in to comment.