зеркало из https://github.com/github/vitess-gh.git
bug fix: typo on pool check.
This commit is contained in:
Родитель
075a6c2069
Коммит
cfb38ce17a
|
@ -176,42 +176,42 @@ func (cp *CachePool) StatsJSON() string {
|
|||
}
|
||||
|
||||
func (cp *CachePool) Capacity() int64 {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.Capacity()
|
||||
}
|
||||
|
||||
func (cp *CachePool) Available() int64 {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.Available()
|
||||
}
|
||||
|
||||
func (cp *CachePool) MaxCap() int64 {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.MaxCap()
|
||||
}
|
||||
|
||||
func (cp *CachePool) WaitCount() int64 {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.WaitCount()
|
||||
}
|
||||
|
||||
func (cp *CachePool) WaitTime() time.Duration {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.WaitTime()
|
||||
}
|
||||
|
||||
func (cp *CachePool) IdleTimeout() time.Duration {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.IdleTimeout()
|
||||
|
|
|
@ -110,42 +110,42 @@ func (cp *ConnectionPool) StatsJSON() string {
|
|||
}
|
||||
|
||||
func (cp *ConnectionPool) Capacity() int64 {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.Capacity()
|
||||
}
|
||||
|
||||
func (cp *ConnectionPool) Available() int64 {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.Available()
|
||||
}
|
||||
|
||||
func (cp *ConnectionPool) MaxCap() int64 {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.MaxCap()
|
||||
}
|
||||
|
||||
func (cp *ConnectionPool) WaitCount() int64 {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.WaitCount()
|
||||
}
|
||||
|
||||
func (cp *ConnectionPool) WaitTime() time.Duration {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.WaitTime()
|
||||
}
|
||||
|
||||
func (cp *ConnectionPool) IdleTimeout() time.Duration {
|
||||
if cp == nil {
|
||||
if cp.pool == nil {
|
||||
return 0
|
||||
}
|
||||
return cp.pool.IdleTimeout()
|
||||
|
|
Загрузка…
Ссылка в новой задаче