waiting: increase poll timeout to 10 minutes

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
michael 2026-01-31 09:17:51 -06:00
parent 48547994cc
commit 5f9462a91f

View file

@ -85,7 +85,7 @@
// Configuration
const API_BASE_URL = 'https://valentinesong.oliver.digital/back';
const POLL_INTERVAL = 10 * 1000; // 10 seconds
const MAX_POLL_TIME = 5 * 60 * 1000; // 5 minutes
const MAX_POLL_TIME = 10 * 60 * 1000; // 10 minutes
// State
const startTime = Date.now();