Skip to content

Commit

Permalink
Merge pull request cockroachdb#10433 from petermattis/pmattis/default…
Browse files Browse the repository at this point in the history
…-scan-max-idle-time

server: change defaultScanMaxIdleTime from 5s to 200ms
  • Loading branch information
petermattis authored Nov 7, 2016
2 parents 3e0f63d + 6294d40 commit eee24c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const (
defaultSQLMemoryPoolSize = 512 << 20 // 512 MB
defaultScanInterval = 10 * time.Minute
defaultConsistencyCheckInterval = 24 * time.Hour
defaultScanMaxIdleTime = 5 * time.Second
defaultScanMaxIdleTime = 200 * time.Millisecond
defaultMetricsSampleInterval = 10 * time.Second
defaultTimeUntilStoreDead = 5 * time.Minute
defaultStorePath = "cockroach-data"
Expand Down

0 comments on commit eee24c0

Please sign in to comment.