1
0
mirror of https://github.com/redis/go-redis.git synced 2025-09-02 22:01:16 +03:00

fix build

This commit is contained in:
Nedyalko Dyakov
2025-08-29 23:10:45 +03:00
parent 81de5aa42d
commit e6d4b46ece
2 changed files with 1 additions and 2 deletions

View File

@@ -136,7 +136,7 @@ func DefaultConfig() *Config {
MaxWorkers: 0, // Auto-calculated based on pool size
HandoffQueueSize: 0, // Auto-calculated based on max workers
PostHandoffRelaxedDuration: 0, // Auto-calculated based on relaxed timeout
LogLevel: LogLevelError,
LogLevel: logging.LogLevelError,
// Connection Handoff Configuration
MaxHandoffRetries: 3,

View File

@@ -10,7 +10,6 @@ import (
. "github.com/bsm/ginkgo/v2"
. "github.com/bsm/gomega"
"github.com/redis/go-redis/v9"
"github.com/redis/go-redis/v9/internal/pool"
"github.com/redis/go-redis/v9/logging"
)