Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions source/core/datasource/TimeSeries.realtime.datasource.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,6 @@ class TimeSeriesRealtimeDatasource extends DataSource {
}

async removeDataSynchronizer() {
if(this.dataSynchronizer) {
await this.dataSynchronizer.removeDataSource(this);
}
this.dataSynchronizer = undefined;
// remove datasynchronizer
// restore datasource topic
Expand Down
4 changes: 0 additions & 4 deletions source/core/datasource/TimeSeries.replay.datasource.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,6 @@ class TimeSeriesReplayDatasource extends DataSource {
}

async removeDataSynchronizer() {
// ISSUE: this causing loop because this.dataSynchronizer.removeDataSource(this); is calling this method
// if(this.dataSynchronizer) {
// await this.dataSynchronizer.removeDataSource(this);
// }
this.init = undefined;
this.dataSynchronizer = undefined;
return this.checkInit();
Expand Down