Skip to content
Snippets Groups Projects
Commit 99959fcf authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

increase update polling time to 10 seconds

parent 2b3ffc8d
No related branches found
No related tags found
2 merge requests!1431pick up recent patches to 2.8.2,!1409increase update polling time to 10 seconds
Pipeline #10628 passed
......@@ -40,7 +40,7 @@ export class PollingDataUpdaterService implements OnDestroy {
* @return Observable<JsonObject> Data poller observable
*/
public getDataPoller$(url: string): Observable<JsonObject> {
return timer(1, 3000).pipe(
return timer(1, 10000).pipe(
switchMap(() => this.httpClient.get<JsonObject>(url)),
retry(),
takeUntil(this.stopPolling),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment