Skip to content

Commit

Permalink
fix:DccOptions error (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
MayueCif authored Feb 27, 2023
1 parent e4e6590 commit 78fc17b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ public static DccOptions GetDefaultDccOptions(this IMasaStackConfig masaStackCon
DefaultDatabase = redis.RedisDb,
Password = redis.RedisPassword
},
Secret = masaStackConfig.DccSecret,
PublicSecret = masaStackConfig.DccSecret,
ConfigObjectSecret = masaStackConfig.DccSecret
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ public static DccOptions GetDefaultDccOptions(Dictionary<string, string> configM
DefaultDatabase = redis.RedisDb,
Password = redis.RedisPassword
},
Secret = secret,
PublicSecret = secret
PublicSecret = secret,
ConfigObjectSecret = secret
};

return options;
Expand Down

0 comments on commit 78fc17b

Please sign in to comment.