We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fe0669 commit 80f7b02Copy full SHA for 80f7b02
worker/tick_maker.go
@@ -76,7 +76,7 @@ func (t *TickMaker) OnDoneLog(log *matching.DoneLog, offset int64) {
76
77
func (t *TickMaker) OnMatchLog(log *matching.MatchLog, offset int64) {
78
for _, granularity := range minutes {
79
- tickTime := log.Time.UTC().Truncate(time.Duration(granularity) * time.Minute).Local().Unix()
+ tickTime := log.Time.UTC().Truncate(time.Duration(granularity) * time.Minute).Unix()
80
81
tick, found := t.ticks[granularity]
82
if !found || tick.Time != tickTime {
0 commit comments