소스 검색

fix nil bug

Paul 6 년 전
부모
커밋
8ca2f9ebce
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      middleware/auth/session_redis.go

+ 1
- 1
middleware/auth/session_redis.go 파일 보기

@@ -12,7 +12,7 @@ type RedisSessionStore struct {
12 12
 }
13 13
 
14 14
 func NewRedisSessionStore(address string, password string) *RedisSessionStore {
15
-	session := &RedisSessionStore{}
15
+	session := &RedisSessionStore{once:&sync.Once{}}
16 16
 	session.once.Do(func() {
17 17
 		session.client = redis.NewClient(&redis.Options{
18 18
 			Addr:     address,