mirror of
https://github.com/nasa/openmct.git
synced 2025-06-15 13:48:12 +00:00
[Plot] Use a lossless subscription
Utilize lossless subscription to ensure that points are not overwritten before being plotted from live telemetry. WTD-784.
This commit is contained in:
@ -101,7 +101,8 @@ define(
|
|||||||
}
|
}
|
||||||
subscription = domainObject && telemetrySubscriber.subscribe(
|
subscription = domainObject && telemetrySubscriber.subscribe(
|
||||||
domainObject,
|
domainObject,
|
||||||
updateValues
|
updateValues,
|
||||||
|
true // Lossless
|
||||||
);
|
);
|
||||||
if (subscription) {
|
if (subscription) {
|
||||||
setupAxes(subscription.getMetadata());
|
setupAxes(subscription.getMetadata());
|
||||||
|
Reference in New Issue
Block a user