diff --git a/apps/web/src/app/workspaces/services/polling-data-updater.service.ts b/apps/web/src/app/workspaces/services/polling-data-updater.service.ts
index d04ced64708317770c85e670ea797ced50546167..e0f7c03b812cb8722c665fd06ee0c4d76f5af33a 100644
--- a/apps/web/src/app/workspaces/services/polling-data-updater.service.ts
+++ b/apps/web/src/app/workspaces/services/polling-data-updater.service.ts
@@ -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),