Explorar o código

fix polling 10s

Gustavo Zanatta hai 5 días
pai
achega
52e98a8b7c
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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() {