revert default interval from 100ms to 50ms

This commit is contained in:
John Guo
2020-12-25 20:31:09 +08:00
parent 4e79b90863
commit ac827d3154

View File

@ -36,7 +36,7 @@ const (
panicExit = "exit" // Internal usage for custom job exit function with panic.
defaultTimes = math.MaxInt32 // Default limit running times, a big number.
defaultSlotNumber = 10 // Default slot number.
defaultWheelInterval = 100 // Default wheel interval.
defaultWheelInterval = 50 // Default wheel interval.
defaultWheelLevel = 5 // Default wheel level.
cmdEnvKey = "gf.gtimer" // Configuration key for command argument or environment.
)