mirror of
https://github.com/juanfont/headscale.git
synced 2025-11-29 13:28:03 -05:00
13 lines
227 B
Go
13 lines
227 B
Go
package state
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Test configuration for NodeStore batching.
|
|
// These values are optimized for test speed rather than production use.
|
|
const (
|
|
TestBatchSize = 5
|
|
TestBatchTimeout = 5 * time.Millisecond
|
|
)
|