Skip to content

Commit 17ef68f

Browse files
jvigliottadavetsay
andauthored
Back merge release/5.4.0 into main (#364)
Co-authored-by: David Tsay <3614296+davetsay@users.noreply.github.com> Co-authored-by: David Tsay <david.e.tsay@gmail.com>
1 parent 33408c7 commit 17ef68f

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

config.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,12 +378,15 @@
378378
/**
379379
* Enable/disable summary widgets. Added in R3.4.0.
380380
*/
381-
summaryWidgets: {
382-
enabled: true
381+
SummaryWidget: {
382+
enabled: false
383383
},
384384
BarChart: {
385385
enabled: false
386386
},
387+
CorrelationTelemetry: {
388+
enabled: false
389+
},
387390
ScatterPlot: {
388391
enabled: false
389392
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@
8888
},
8989
"author": "",
9090
"license": "Apache-2.0"
91-
}
91+
}

src/services/mcws/MCWSClient.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,13 @@ class MCWSClient {
6666
try {
6767
response = await fetch(url, options);
6868
} catch (error) {
69-
console.error('Error in base request', error);
70-
throw error;
69+
if (error.name === 'AbortError') {
70+
console.warn('Request aborted', error);
71+
return;
72+
} else {
73+
console.error('Error in base request', error);
74+
throw error;
75+
}
7176
} finally {
7277
this._updatePending();
7378
}

0 commit comments

Comments
 (0)