Browse Source

fix nil bug

Paul 6 years ago
parent
commit
8ca2f9ebce
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      middleware/auth/session_redis.go

+ 1
- 1
middleware/auth/session_redis.go View File

@@ -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,