1
0
mirror of https://github.com/redis/go-redis.git synced 2025-04-17 20:17:02 +03:00

malign struct fields

This commit is contained in:
Vladimir Mihailenco 2019-08-08 14:22:01 +03:00
parent e0fed4d581
commit 87225c1cf9

View File

@ -27,12 +27,12 @@ func (e BadConnError) Unwrap() error {
}
type SingleConnPool struct {
pool Pooler
pool Pooler
level int32 // atomic
state uint32 // atomic
ch chan *Conn
level int32 // atomic
_badConnError atomic.Value
}