fix: 진행 페이지 리로드 시 무한 로딩 + 동시 검사 수 상한 수정

- 리로드 시 API에서 현재 상태를 조회하여 스토어 복원 (initFromApi)
- SITE_CONCURRENCY 서버 상한 4→8로 변경 (사용자 설정 8이 제대로 동작)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jungwoo choi
2026-02-13 17:50:14 +09:00
parent 1e50b72fd8
commit 3d03c47aaa
3 changed files with 32 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class Settings(BaseSettings):
# Site inspection
SITE_MAX_PAGES: int = 500
SITE_MAX_DEPTH: int = 2
SITE_CONCURRENCY: int = 4
SITE_CONCURRENCY: int = 8
# Application
PROJECT_NAME: str = "Web Inspector API"