Skip to content

Commit 6f445ec

Browse files
authored
Chore: Remove liveTimer reference from testdata (grafana#71997)
1 parent ff48a14 commit 6f445ec

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

public/app/plugins/datasource/testdata/runStreams.ts

+7-14
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ import {
1313
DataFrameData,
1414
} from '@grafana/data';
1515
// eslint-disable-next-line no-restricted-imports -- In the process from being removed
16-
import { liveTimer } from 'app/features/dashboard/dashgrid/liveTimer';
17-
// eslint-disable-next-line no-restricted-imports -- In the process from being removed
1816
import { StreamingDataFrame } from 'app/features/live/data/StreamingDataFrame';
1917

2018
import { getRandomLine } from './LogIpsum';
@@ -104,18 +102,13 @@ export function runSignalStream(
104102
}
105103

106104
const pushNextEvent = () => {
107-
addNextRow(Date.now());
108-
109-
const elapsed = liveTimer.lastUpdate - lastSent;
110-
if (elapsed > 1000 || liveTimer.ok) {
111-
subscriber.next({
112-
data: [frame],
113-
key: streamId,
114-
state: LoadingState.Streaming,
115-
});
116-
lastSent = liveTimer.lastUpdate;
117-
}
118-
105+
lastSent = Date.now();
106+
addNextRow(lastSent);
107+
subscriber.next({
108+
data: [frame],
109+
key: streamId,
110+
state: LoadingState.Streaming,
111+
});
119112
timeoutId = setTimeout(pushNextEvent, speed);
120113
};
121114

0 commit comments

Comments
 (0)