mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-05-17 07:11:30 +00:00
Nit: use `time.Durations` instead of constants in seconds. Makes for slightly more readable code.
8 lines
81 B
Go
8 lines
81 B
Go
package constants
|
|
|
|
import "time"
|
|
|
|
const (
|
|
VolumePulsePeriod = 5 * time.Second
|
|
)
|