mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
unistore: fix watch events forever looping (#93517)
This commit is contained in:
parent
715ee35abc
commit
216b63549d
@ -546,7 +546,9 @@ func (b *backend) poller(ctx context.Context, since groupResourceRV, stream chan
|
|||||||
t.Reset(interval)
|
t.Reset(interval)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
since[group][resource] = next
|
if next > since[group][resource] {
|
||||||
|
since[group][resource] = next
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user