mirror of
https://github.com/nasa/openmct.git
synced 2025-03-21 03:25:44 +00:00
Do not pass onPartialResponse option on to upstream telemetry (#5486)
This commit is contained in:
parent
0e707150e0
commit
4ac39a3990
@ -300,8 +300,11 @@ export default class ConditionManager extends EventEmitter {
|
||||
return this.compositionLoad.then(() => {
|
||||
let latestTimestamp;
|
||||
let conditionResults = {};
|
||||
let nextLegOptions = {...options};
|
||||
delete nextLegOptions.onPartialResponse;
|
||||
|
||||
const conditionRequests = this.conditions
|
||||
.map(condition => condition.requestLADConditionResult(options));
|
||||
.map(condition => condition.requestLADConditionResult(nextLegOptions));
|
||||
|
||||
return Promise.all(conditionRequests)
|
||||
.then((results) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user