Gustavo Zanatta пре 5 дана
родитељ
комит
52e98a8b7c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/composables/useImportPoller.js

+ 1 - 1
src/composables/useImportPoller.js

@@ -1,7 +1,7 @@
 import { ref, onUnmounted } from "vue";
 import { getImportStatus } from "src/api/importStatus";
 
-const POLL_INTERVAL_MS = 30000;
+const POLL_INTERVAL_MS = 10000;
 const MAX_ATTEMPTS     = 10; // 5 minutes
 
 export function useImportPoller() {