Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(MesosStateStore): adjust stream event sampling
Use `sampleTime` instead of `debounceTime` to reduce the frequency of events. Debounce emits values from the source Observable only after a particular time span has passed *without* another source emission – which in case the source update frequency is higher than the `dueTime` would mean that we don't receive any updates. The `sampleTime` operator emits the last emitted value from the source Observable within time intervals. Closes DCOS_OSS-2340
- Loading branch information