mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-23 18:49:17 +08:00
0060a2cf9c
* set larger buf size for LogBuffer * jump to next day when no more entry found * Update weed/filer/filer_notify_read.go --------- Co-authored-by: Chris Lu <chrislusf@users.noreply.github.com>
14 lines
229 B
Go
14 lines
229 B
Go
package util
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func GetNextDayTsNano(curTs int64) int64 {
|
|
curTime := time.Unix(0, curTs)
|
|
nextDay := curTime.AddDate(0, 0, 1).Truncate(24 * time.Hour)
|
|
nextDayNano := nextDay.UnixNano()
|
|
|
|
return nextDayNano
|
|
}
|