xf 10 달 전
부모
커밋
eeab95af80
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/XF.EasyCaching/StartupExtensions.cs

+ 1 - 1
src/XF.EasyCaching/StartupExtensions.cs

@@ -43,7 +43,7 @@ namespace XF.EasyCaching
                     .WithRedisBus(busConf =>
                     {
                         busConf.Endpoints.Add(new ServerEndPoint(options.Host, options.Port));
-
+                        busConf.Password = options.Password;
                         // do not forget to set the SerializerName for the bus here !!
                         busConf.SerializerName = "xjson";
                     });