diff --git a/.github/PULL_REQUEST_TEMPLATE_meeting_ai_db.md b/.github/PULL_REQUEST_TEMPLATE_meeting_ai_db.md new file mode 100644 index 0000000..95d1eb8 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE_meeting_ai_db.md @@ -0,0 +1,176 @@ +# [DB] 회의종료 기능을 위한 스키마 추가 + +## 📋 요약 +회의 종료 시 참석자별 회의록을 AI가 통합하고 Todo를 자동 추출하기 위한 데이터베이스 스키마 추가 + +## 🎯 목적 +- 참석자별 회의록 저장 지원 +- AI 통합 회의록 생성 및 저장 +- 안건별 구조화된 회의록 관리 +- AI 요약 결과 캐싱 (성능 최적화) +- Todo 자동 추출 정보 관리 + +## 📊 변경 내용 + +### 1. minutes 테이블 확장 +```sql +ALTER TABLE minutes ADD COLUMN user_id VARCHAR(100); +``` +- **목적**: 참석자별 회의록과 AI 통합 회의록 구분 +- **구분 방법**: + - `user_id IS NULL` → AI 통합 회의록 + - `user_id IS NOT NULL` → 참석자별 회의록 +- **설계 개선**: `is_consolidated` 컬럼 불필요 (중복 정보 제거) + +### 2. agenda_sections 테이블 생성 (신규) +```sql +CREATE TABLE agenda_sections ( + id, minutes_id, meeting_id, + agenda_number, agenda_title, + ai_summary_short, discussions, + decisions (JSON), pending_items (JSON), opinions (JSON) +); +``` +- **목적**: 안건별 AI 요약 결과 저장 +- **JSON 필드**: + - `decisions`: 결정 사항 배열 + - `pending_items`: 보류 사항 배열 + - `opinions`: 참석자별 의견 [{speaker, opinion}] + +### 3. ai_summaries 테이블 생성 (신규) +```sql +CREATE TABLE ai_summaries ( + id, meeting_id, summary_type, + source_minutes_ids (JSON), result (JSON), + processing_time_ms, model_version, + keywords (JSON), statistics (JSON) +); +``` +- **목적**: AI 요약 결과 캐싱 및 성능 최적화 +- **summary_type**: + - `CONSOLIDATED`: 통합 회의록 요약 + - `TODO_EXTRACTION`: Todo 자동 추출 +- **캐싱 효과**: 재조회 시 3-5초 → 0.1초 + +### 4. todos 테이블 확장 +```sql +ALTER TABLE todos +ADD COLUMN extracted_by VARCHAR(50) DEFAULT 'AI', +ADD COLUMN section_reference VARCHAR(200), +ADD COLUMN extraction_confidence DECIMAL(3,2); +``` +- **extracted_by**: `AI` (자동 추출) / `MANUAL` (수동 작성) +- **section_reference**: 관련 안건 참조 (예: "안건 1") +- **extraction_confidence**: AI 추출 신뢰도 (0.00~1.00) + +## 🔄 데이터 플로우 + +``` +1. 회의 진행 중 + └─ 각 참석자가 회의록 작성 + └─ minutes 테이블 저장 (user_id: user@example.com) + +2. 회의 종료 + └─ AI Service 호출 + └─ 참석자별 회의록 조회 (user_id IS NOT NULL) + └─ Claude AI 통합 요약 생성 + └─ minutes 테이블 저장 (user_id: NULL) + └─ agenda_sections 테이블 저장 (안건별 섹션) + └─ ai_summaries 테이블 저장 (캐시) + └─ todos 테이블 저장 (extracted_by: AI) + +3. 회의록 조회 + └─ ai_summaries 캐시 조회 (빠름!) + └─ agenda_sections 조회 + └─ 화면 렌더링 +``` + +## 📁 관련 파일 + +### 마이그레이션 +- `meeting/src/main/resources/db/migration/V3__add_meeting_end_support.sql` + +### 문서 +- `docs/DB-Schema-회의종료.md` - 상세 스키마 문서 +- `docs/ERD-회의종료.puml` - ERD 다이어그램 +- `docs/회의종료-개발계획.md` - 전체 개발 계획 + +## ✅ 체크리스트 + +### 마이그레이션 +- [x] V3 마이그레이션 스크립트 작성 +- [x] 인덱스 추가 (성능 최적화) +- [x] 외래키 제약조건 설정 +- [x] 트리거 생성 (updated_at 자동 업데이트) +- [x] 코멘트 추가 (문서화) + +### 문서 +- [x] DB 스키마 상세 문서 +- [x] ERD 다이어그램 +- [x] JSON 필드 구조 예시 +- [x] 쿼리 예시 작성 +- [x] 개발 계획서 + +### 설계 검증 +- [x] 중복 컬럼 제거 (is_consolidated) +- [x] NULL 활용 (user_id로 구분) +- [x] JSON 필드 구조 정의 +- [x] 인덱스 전략 수립 + +## 🧪 테스트 계획 + +### 마이그레이션 테스트 +1. 로컬 환경에서 마이그레이션 실행 +2. 테이블 생성 확인 +3. 인덱스 생성 확인 +4. 외래키 제약조건 확인 + +### 성능 테스트 +1. 참석자별 회의록 조회 성능 +2. 안건별 섹션 조회 성능 +3. JSON 필드 쿼리 성능 +4. ai_summaries 캐시 조회 성능 + +## 🚀 다음 단계 + +### Meeting Service API 개발 (병렬 진행 가능) +1. `GET /meetings/{meetingId}/minutes/by-participants` - 참석자별 회의록 조회 +2. `GET /meetings/{meetingId}/agenda-sections` - 안건별 섹션 조회 +3. `GET /meetings/{meetingId}/statistics` - 회의 통계 조회 +4. `POST /internal/ai-summaries` - AI 결과 저장 (내부 API) + +### AI Service 개발 (병렬 진행 가능) +1. Claude AI 프롬프트 설계 +2. `POST /transcripts/consolidate` - 통합 회의록 생성 +3. `POST /todos/extract` - Todo 자동 추출 +4. Meeting Service API 호출 통합 + +## 💬 리뷰 포인트 + +1. **DB 스키마 설계** + - user_id만으로 참석자/통합 구분이 명확한가? + - JSON 필드 구조가 적절한가? + - 인덱스 전략이 최적인가? + +2. **성능** + - 인덱스가 충분한가? + - JSON 필드 쿼리 성능이 괜찮은가? + - 추가 인덱스가 필요한가? + +3. **확장성** + - 향후 필드 추가가 용이한가? + - 다른 AI 모델 지원이 가능한가? + +## 📌 참고 사항 + +- PostgreSQL 기준으로 작성됨 +- Flyway 자동 마이그레이션 지원 +- 샘플 데이터는 주석 처리 (운영 환경 고려) +- 트리거 함수 포함 (updated_at 자동 업데이트) + +## 🔗 관련 이슈 + + +--- + +**Merge 후 Meeting Service API 개발을 시작할 수 있습니다!** diff --git a/ai-python/__pycache__/main.cpython-313.pyc b/ai-python/__pycache__/main.cpython-313.pyc new file mode 100644 index 0000000..4f0d34f Binary files /dev/null and b/ai-python/__pycache__/main.cpython-313.pyc differ diff --git a/ai-python/app/__pycache__/__init__.cpython-313.pyc b/ai-python/app/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..c84f132 Binary files /dev/null and b/ai-python/app/__pycache__/__init__.cpython-313.pyc differ diff --git a/ai-python/app/__pycache__/config.cpython-313.pyc b/ai-python/app/__pycache__/config.cpython-313.pyc new file mode 100644 index 0000000..1f295f0 Binary files /dev/null and b/ai-python/app/__pycache__/config.cpython-313.pyc differ diff --git a/ai-python/app/api/__pycache__/__init__.cpython-313.pyc b/ai-python/app/api/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..27e7bd3 Binary files /dev/null and b/ai-python/app/api/__pycache__/__init__.cpython-313.pyc differ diff --git a/ai-python/app/api/v1/__pycache__/__init__.cpython-313.pyc b/ai-python/app/api/v1/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..09b89a5 Binary files /dev/null and b/ai-python/app/api/v1/__pycache__/__init__.cpython-313.pyc differ diff --git a/ai-python/app/api/v1/__pycache__/suggestions.cpython-313.pyc b/ai-python/app/api/v1/__pycache__/suggestions.cpython-313.pyc new file mode 100644 index 0000000..c2f1348 Binary files /dev/null and b/ai-python/app/api/v1/__pycache__/suggestions.cpython-313.pyc differ diff --git a/ai-python/app/api/v1/__pycache__/transcripts.cpython-313.pyc b/ai-python/app/api/v1/__pycache__/transcripts.cpython-313.pyc new file mode 100644 index 0000000..3b410df Binary files /dev/null and b/ai-python/app/api/v1/__pycache__/transcripts.cpython-313.pyc differ diff --git a/ai-python/app/models/__pycache__/__init__.cpython-313.pyc b/ai-python/app/models/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..ed1e908 Binary files /dev/null and b/ai-python/app/models/__pycache__/__init__.cpython-313.pyc differ diff --git a/ai-python/app/models/__pycache__/response.cpython-313.pyc b/ai-python/app/models/__pycache__/response.cpython-313.pyc new file mode 100644 index 0000000..e2cc2c1 Binary files /dev/null and b/ai-python/app/models/__pycache__/response.cpython-313.pyc differ diff --git a/ai-python/app/models/__pycache__/transcript.cpython-313.pyc b/ai-python/app/models/__pycache__/transcript.cpython-313.pyc new file mode 100644 index 0000000..63d5734 Binary files /dev/null and b/ai-python/app/models/__pycache__/transcript.cpython-313.pyc differ diff --git a/ai-python/app/prompts/__pycache__/consolidate_prompt.cpython-313.pyc b/ai-python/app/prompts/__pycache__/consolidate_prompt.cpython-313.pyc new file mode 100644 index 0000000..bfa49a3 Binary files /dev/null and b/ai-python/app/prompts/__pycache__/consolidate_prompt.cpython-313.pyc differ diff --git a/ai-python/app/services/__pycache__/__init__.cpython-313.pyc b/ai-python/app/services/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..3546a4c Binary files /dev/null and b/ai-python/app/services/__pycache__/__init__.cpython-313.pyc differ diff --git a/ai-python/app/services/__pycache__/claude_service.cpython-313.pyc b/ai-python/app/services/__pycache__/claude_service.cpython-313.pyc new file mode 100644 index 0000000..667eda0 Binary files /dev/null and b/ai-python/app/services/__pycache__/claude_service.cpython-313.pyc differ diff --git a/ai-python/app/services/__pycache__/eventhub_service.cpython-313.pyc b/ai-python/app/services/__pycache__/eventhub_service.cpython-313.pyc new file mode 100644 index 0000000..25549bb Binary files /dev/null and b/ai-python/app/services/__pycache__/eventhub_service.cpython-313.pyc differ diff --git a/ai-python/app/services/__pycache__/redis_service.cpython-313.pyc b/ai-python/app/services/__pycache__/redis_service.cpython-313.pyc new file mode 100644 index 0000000..fe4e3d5 Binary files /dev/null and b/ai-python/app/services/__pycache__/redis_service.cpython-313.pyc differ diff --git a/ai-python/app/services/__pycache__/transcript_service.cpython-313.pyc b/ai-python/app/services/__pycache__/transcript_service.cpython-313.pyc new file mode 100644 index 0000000..9d98b20 Binary files /dev/null and b/ai-python/app/services/__pycache__/transcript_service.cpython-313.pyc differ diff --git a/ai-python/logs/ai-python.log b/ai-python/logs/ai-python.log new file mode 100644 index 0000000..4bc9155 --- /dev/null +++ b/ai-python/logs/ai-python.log @@ -0,0 +1,2 @@ +INFO: Will watch for changes in these directories: ['/Users/jominseo/HGZero/ai-python'] +ERROR: [Errno 48] Address already in use diff --git a/ai-python/logs/ai-service.log b/ai-python/logs/ai-service.log new file mode 100644 index 0000000..c9ad170 --- /dev/null +++ b/ai-python/logs/ai-service.log @@ -0,0 +1,1577 @@ +INFO: Will watch for changes in these directories: ['/Users/jominseo/HGZero/ai-python'] +INFO: Uvicorn running on http://0.0.0.0:8087 (Press CTRL+C to quit) +INFO: Started reloader process [37706] using WatchFiles +INFO: Started server process [37710] +INFO: Waiting for application startup. +2025-10-28 16:55:43,696 - main - INFO - ============================================================ +2025-10-28 16:55:43,696 - main - INFO - AI Service (Python) 시작 - Port: 8087 +2025-10-28 16:55:43,696 - main - INFO - Claude Model: claude-3-5-sonnet-20241022 +2025-10-28 16:55:43,696 - main - INFO - Redis: 20.249.177.114:6379 +2025-10-28 16:55:43,696 - main - INFO - ============================================================ +2025-10-28 16:55:43,696 - main - INFO - Event Hub 리스너 백그라운드 시작... +2025-10-28 16:55:43,696 - app.services.eventhub_service - INFO - Event Hub 리스너 시작 +INFO: Application startup complete. +2025-10-28 16:55:43,791 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 16:55:43,791 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' is being started +2025-10-28 16:55:43,808 - watchfiles.main - INFO - 3 changes detected +2025-10-28 16:55:43,913 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 16:55:43,965 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:43,965 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:43,965 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:43,965 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:55:43,966 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:43,966 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:43,966 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:43,966 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:43,991 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:44,042 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:44,093 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:55:44,145 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,145 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:44,196 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,197 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:44,197 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 16:55:44,401 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,401 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:44,401 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,401 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:44,408 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,408 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:44,408 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,408 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,418 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:44,419 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,419 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:44,419 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,419 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:44,419 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,419 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:44,419 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 16:55:44,419 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 16:55:44,471 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 16:55:44,488 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:44,488 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:44,488 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:44,488 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:55:44,488 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,488 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:44,489 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,489 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:44,497 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:44,549 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:44,600 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:55:44,651 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,652 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:44,703 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:44,704 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:44,704 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 16:55:44,910 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:45,309 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 16:55:45,309 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:45,309 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 16:55:45,361 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:45,412 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:45,412 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:45,412 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:45,412 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:45,413 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:55:45,413 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:45,413 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:55:45,413 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:55:45,413 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:45,413 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:55:45,413 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:45,413 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:55:45,413 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:55:45,440 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:55:45\nReference:988943bb-723c-4972-9d3a-99c4fa882be7\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T07:55:45 TrackingId:8fa847ac16604a0cba7a40a9082963b1_G27, SystemTracker:gateway5, Timestamp:2025-10-28T07:55:45"). +2025-10-28 16:55:45,441 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:55:45 +Reference:988943bb-723c-4972-9d3a-99c4fa882be7 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T07:55:45 TrackingId:8fa847ac16604a0cba7a40a9082963b1_G27, SystemTracker:gateway5, Timestamp:2025-10-28T07:55:45 +2025-10-28 16:55:45,441 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +INFO: 127.0.0.1:60654 - "GET /health HTTP/1.1" 200 OK +INFO: 127.0.0.1:60775 - "GET /swagger-ui.html HTTP/1.1" 200 OK +INFO: 127.0.0.1:60775 - "GET /v3/api-docs HTTP/1.1" 200 OK +INFO: 127.0.0.1:60775 - "GET /swagger-ui.html HTTP/1.1" 200 OK +INFO: 127.0.0.1:60775 - "GET /v3/api-docs HTTP/1.1" 200 OK +2025-10-28 16:56:16,792 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 16:56:16,792 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 16:56:16,849 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 16:56:16,867 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:16,868 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:16,868 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:16,868 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:56:16,869 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:16,869 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:56:16,869 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:16,869 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:56:16,875 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:16,926 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:16,978 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:56:17,029 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,029 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:56:17,081 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,081 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:56:17,081 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 16:56:17,286 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,735 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 16:56:17,735 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,735 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 16:56:17,786 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,837 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,837 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:56:17,837 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:56:17,838 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:17,863 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:56:17\nReference:cfac7ba5-9555-461e-96ed-f2fa9b384c1e\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T07:56:17 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T07:56:17"). +2025-10-28 16:56:17,864 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:56:17 +Reference:cfac7ba5-9555-461e-96ed-f2fa9b384c1e +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T07:56:17 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T07:56:17 +2025-10-28 16:56:17,866 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 16:56:52,761 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 16:56:52,761 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 16:56:52,824 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 16:56:52,845 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:52,845 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:52,846 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:52,846 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:56:52,846 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:52,846 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:56:52,846 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:52,846 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:56:52,856 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:52,907 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:52,958 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:56:53,011 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,011 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:56:53,062 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,062 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:56:53,063 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 16:56:53,269 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,773 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 16:56:53,773 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,773 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 16:56:53,824 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,875 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,875 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:56:53,875 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,875 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:56:53,876 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:56:53,876 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:53,876 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:56:53,876 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:56:53,876 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,876 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:56:53,876 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,876 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:56:53,876 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:56:53,927 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:56:53\nReference:6616a297-6287-45c9-8928-f8429efec7f4\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T07:56:53 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T07:56:53"). +2025-10-28 16:56:53,927 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:56:53 +Reference:6616a297-6287-45c9-8928-f8429efec7f4 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T07:56:53 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T07:56:53 +2025-10-28 16:56:53,928 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 16:57:27,533 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 16:57:27,534 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 16:57:27,595 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 16:57:27,612 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:27,612 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:27,612 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:27,612 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:57:27,612 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:27,612 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:57:27,613 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:27,613 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:57:27,619 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:27,671 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:27,721 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:57:27,773 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:27,773 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:57:27,825 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:27,825 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:57:27,825 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 16:57:28,031 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:28,414 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 16:57:28,414 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:28,414 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 16:57:28,466 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:57:28,517 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:28,543 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:57:28\nReference:16736845-92a4-4915-bb8d-d1a8f3e11919\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T07:57:28 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T07:57:28"). +2025-10-28 16:57:28,543 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:57:28 +Reference:16736845-92a4-4915-bb8d-d1a8f3e11919 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T07:57:28 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T07:57:28 +2025-10-28 16:57:28,543 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 16:57:59,330 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 16:57:59,331 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 16:57:59,448 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 16:57:59,512 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:59,513 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:59,513 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:59,514 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:57:59,514 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:59,514 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:57:59,514 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:59,514 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:57:59,542 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:59,594 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:57:59,644 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:57:59,696 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:59,696 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:57:59,746 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:57:59,747 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:57:59,747 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 16:57:59,949 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:00,456 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 16:58:00,456 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:00,456 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 16:58:00,507 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:58:00,559 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:00,611 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:58:00\nReference:3d64417d-2ea8-40b1-af45-a7bb75a23dfb\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T07:58:00 TrackingId:226257c56df74cbc8f659c31f73f4812_G12, SystemTracker:gateway5, Timestamp:2025-10-28T07:58:00"). +2025-10-28 16:58:00,611 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:58:00 +Reference:3d64417d-2ea8-40b1-af45-a7bb75a23dfb +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T07:58:00 TrackingId:226257c56df74cbc8f659c31f73f4812_G12, SystemTracker:gateway5, Timestamp:2025-10-28T07:58:00 +2025-10-28 16:58:00,611 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 16:58:34,839 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 16:58:34,840 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 16:58:34,898 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 16:58:34,924 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:58:34,925 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:58:34,925 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:58:34,925 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:58:34,925 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:34,925 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:58:34,925 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:34,925 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:58:34,933 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:58:34,984 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:58:35,035 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:58:35,087 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,087 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:58:35,137 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,137 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:58:35,137 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 16:58:35,342 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,770 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 16:58:35,770 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,770 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 16:58:35,821 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,871 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:58:35,872 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:58:35,916 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:58:35\nReference:4cc8cf2d-77a0-4728-8422-01917fdd9c79\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T07:58:35 TrackingId:226257c56df74cbc8f659c31f73f4812_G12, SystemTracker:gateway5, Timestamp:2025-10-28T07:58:35"). +2025-10-28 16:58:35,916 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:58:35 +Reference:4cc8cf2d-77a0-4728-8422-01917fdd9c79 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T07:58:35 TrackingId:226257c56df74cbc8f659c31f73f4812_G12, SystemTracker:gateway5, Timestamp:2025-10-28T07:58:35 +2025-10-28 16:58:35,916 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 16:59:10,167 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 16:59:10,168 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 16:59:10,228 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 16:59:10,246 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:10,246 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:10,247 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:10,247 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:59:10,247 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:10,247 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:59:10,247 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:10,247 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:59:10,257 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:10,308 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:10,359 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:59:10,410 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:10,411 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:59:10,463 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:10,463 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:59:10,463 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 16:59:10,668 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:11,061 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 16:59:11,062 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:11,062 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 16:59:11,113 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:11,164 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:11,165 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:59:11,166 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:11,186 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:59:10\nReference:8129f13b-e104-4d40-a28d-77d7e2bab411\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T07:59:11 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T07:59:11"). +2025-10-28 16:59:11,186 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:59:10 +Reference:8129f13b-e104-4d40-a28d-77d7e2bab411 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T07:59:11 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T07:59:11 +2025-10-28 16:59:11,186 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 16:59:44,152 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 16:59:44,153 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 16:59:44,216 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 16:59:44,231 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:44,231 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:44,232 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:44,232 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:59:44,232 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:44,232 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:59:44,232 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:44,232 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:59:44,241 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:44,292 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:44,344 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:59:44,396 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:44,397 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:59:44,447 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:44,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:59:44,448 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 16:59:44,653 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:45,057 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 16:59:45,058 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:45,058 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 16:59:45,109 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:45,160 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:45,160 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 16:59:45,161 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 16:59:45,170 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:59:44\nReference:28390e1f-6713-4a1b-a929-7134f39fe796\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T07:59:45 TrackingId:cf5d7ef5513b497b9b720ac2c9a161bf_G20, SystemTracker:gateway5, Timestamp:2025-10-28T07:59:45"). +2025-10-28 16:59:45,170 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T07:59:44 +Reference:28390e1f-6713-4a1b-a929-7134f39fe796 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T07:59:45 TrackingId:cf5d7ef5513b497b9b720ac2c9a161bf_G20, SystemTracker:gateway5, Timestamp:2025-10-28T07:59:45 +2025-10-28 16:59:45,170 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:00:19,328 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 17:00:19,330 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:00:19,393 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:00:19,409 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:19,409 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:19,409 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:19,409 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:00:19,410 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:19,410 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:00:19,410 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:19,410 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:00:19,429 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:19,481 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:19,533 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:00:19,583 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:19,583 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:00:19,634 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:19,634 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:00:19,634 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:00:19,839 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:20,272 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:00:20,272 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:20,272 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:00:20,324 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:20,376 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:20,376 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:00:20,376 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:20,376 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:00:20,377 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:00:20,377 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:20,377 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:20,377 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:00:20,377 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:20,377 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:00:20,377 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:20,377 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:00:20,377 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:20,399 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:00:19\nReference:8fb0c4d8-b82f-4ff8-ac80-8d57e54f56fe\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:00:20 TrackingId:8e3c46450adb42ed8201b905731308d3_G30, SystemTracker:gateway5, Timestamp:2025-10-28T08:00:20"). +2025-10-28 17:00:20,400 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:00:19 +Reference:8fb0c4d8-b82f-4ff8-ac80-8d57e54f56fe +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:00:20 TrackingId:8e3c46450adb42ed8201b905731308d3_G30, SystemTracker:gateway5, Timestamp:2025-10-28T08:00:20 +2025-10-28 17:00:20,400 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:00:51,426 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 17:00:51,427 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:00:51,473 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:00:51,487 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:51,487 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:51,487 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:51,487 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:00:51,487 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:51,487 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:00:51,487 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:51,488 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:00:51,496 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:51,546 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:51,598 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:00:51,649 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:51,649 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:00:51,700 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:51,700 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:00:51,700 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:00:51,908 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:52,438 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:00:52,439 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:52,439 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:00:52,490 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:00:52,542 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:00:52,546 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:00:52\nReference:f3260aac-a835-41ad-bf9c-b14dafc2f63c\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:00:52 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T08:00:52"). +2025-10-28 17:00:52,546 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:00:52 +Reference:f3260aac-a835-41ad-bf9c-b14dafc2f63c +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:00:52 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T08:00:52 +2025-10-28 17:00:52,546 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:01:21,474 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 17:01:21,474 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:01:21,532 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:01:21,552 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:21,552 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:21,552 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:21,552 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:01:21,552 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:21,552 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:01:21,552 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:21,552 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:01:21,562 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:21,613 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:21,665 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:01:21,716 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:21,716 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:01:21,768 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:21,768 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:01:21,768 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:01:21,976 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:22,279 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:01:22,279 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:22,279 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:01:22,330 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:22,381 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:22,381 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:01:22,381 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:22,381 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:01:22,381 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:01:22,381 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:22,381 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:22,381 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:01:22,381 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:22,382 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:01:22,382 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:22,382 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:01:22,382 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:22,388 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:01:22\nReference:24c89feb-987e-4321-958a-0b4b52ae70c0\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:01:22 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-28T08:01:22"). +2025-10-28 17:01:22,388 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:01:22 +Reference:24c89feb-987e-4321-958a-0b4b52ae70c0 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:01:22 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-28T08:01:22 +2025-10-28 17:01:22,388 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:01:26,844 - watchfiles.main - INFO - 3 changes detected +2025-10-28 17:01:55,702 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 17:01:55,704 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:01:55,760 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:01:55,778 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:55,778 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:55,778 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:55,779 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:01:55,796 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:55,796 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:01:55,797 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:55,797 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:01:55,804 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:55,856 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:55,907 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:01:55,958 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:55,959 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:01:56,010 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:56,010 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:01:56,010 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:01:56,243 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:56,301 - watchfiles.main - INFO - 3 changes detected +2025-10-28 17:01:56,747 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:01:56,748 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:56,748 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:01:56,798 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:01:56,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:01:56,900 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:01:56\nReference:ae7aa5f4-89cb-409a-8a68-c59b722c9213\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:01:56 TrackingId:4852e434105e4481843247b80b5db410_G25, SystemTracker:gateway5, Timestamp:2025-10-28T08:01:56"). +2025-10-28 17:01:56,900 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:01:56 +Reference:ae7aa5f4-89cb-409a-8a68-c59b722c9213 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:01:56 TrackingId:4852e434105e4481843247b80b5db410_G25, SystemTracker:gateway5, Timestamp:2025-10-28T08:01:56 +2025-10-28 17:01:56,900 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:02:31,126 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 17:02:31,128 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:02:31,184 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:02:31,201 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:02:31,201 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:02:31,201 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:02:31,201 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:02:31,201 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:31,201 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:02:31,201 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:31,201 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:02:31,209 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:02:31,261 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:02:31,312 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:02:31,364 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:31,365 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:02:31,417 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:31,417 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:02:31,417 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:02:31,624 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:31,994 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:02:31,994 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:31,994 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:02:32,045 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:32,096 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:02:32,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:02:32,146 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:02:31\nReference:10f373f2-bccb-4558-ac2a-42c92db01265\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:02:31 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T08:02:31"). +2025-10-28 17:02:32,146 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:02:31 +Reference:10f373f2-bccb-4558-ac2a-42c92db01265 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:02:31 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T08:02:31 +2025-10-28 17:02:32,146 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:03:04,999 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 17:03:05,000 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:03:05,072 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:03:05,093 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:05,094 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:05,094 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:05,094 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:03:05,094 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:05,094 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:03:05,094 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:05,094 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:03:05,104 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:05,155 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:05,206 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:03:05,258 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:05,258 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:03:05,310 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:05,310 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:03:05,310 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:03:05,515 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:05,949 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:03:05,949 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:05,949 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:03:06,000 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:06,051 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:06,052 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:03:06,052 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:06,052 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:03:06,052 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:03:06,052 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:06,052 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:06,052 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:03:06,052 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:06,052 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:03:06,053 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:06,053 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:03:06,053 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:06,069 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:03:05\nReference:479c866c-c2da-45de-9b21-058a0e29742e\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:03:05 TrackingId:095ac8cc67064325bc3c3c10a0449aa3_G16, SystemTracker:gateway5, Timestamp:2025-10-28T08:03:05"). +2025-10-28 17:03:06,069 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:03:05 +Reference:479c866c-c2da-45de-9b21-058a0e29742e +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:03:05 TrackingId:095ac8cc67064325bc3c3c10a0449aa3_G16, SystemTracker:gateway5, Timestamp:2025-10-28T08:03:05 +2025-10-28 17:03:06,069 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:03:35,136 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 17:03:35,137 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:03:35,215 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:03:35,237 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:35,237 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:35,237 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:35,238 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:03:35,238 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:35,238 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:03:35,238 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:35,238 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:03:35,249 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:35,301 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:35,352 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:03:35,407 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:35,407 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:03:35,459 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:35,459 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:03:35,459 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:03:35,666 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:36,012 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:03:36,013 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:36,013 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:03:36,065 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:36,116 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:36,116 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:03:36,116 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:36,116 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:03:36,117 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:03:36,117 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:36,117 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:03:36,117 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:03:36,117 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:36,117 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:03:36,117 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:36,117 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:03:36,117 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:03:36,155 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:03:35\nReference:f0ef4e55-af6f-4e90-8ad7-28f8fee99096\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:03:36 TrackingId:eb17ea27f2b648beac9e3f7659aa6edb_G4, SystemTracker:gateway5, Timestamp:2025-10-28T08:03:36"). +2025-10-28 17:03:36,156 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:03:35 +Reference:f0ef4e55-af6f-4e90-8ad7-28f8fee99096 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:03:36 TrackingId:eb17ea27f2b648beac9e3f7659aa6edb_G4, SystemTracker:gateway5, Timestamp:2025-10-28T08:03:36 +2025-10-28 17:03:36,156 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:04:07,019 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' has claimed partition '0' +2025-10-28 17:04:07,019 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:04:07,075 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:04:07,108 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:07,108 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:07,109 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:07,109 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:07,109 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:07,109 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:07,110 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:07,110 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:07,119 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:07,170 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:07,222 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:07,274 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:07,274 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:07,326 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:07,326 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:07,326 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:04:07,531 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:08,037 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:04:08,037 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:08,037 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:04:08,089 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:08,141 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:08,142 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:08,142 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:08,192 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:04:07\nReference:862e047c-a11d-490e-977a-2f0fc18ba133\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:04:07 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-28T08:04:07"). +2025-10-28 17:04:08,192 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:04:07 +Reference:862e047c-a11d-490e-977a-2f0fc18ba133 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:04:07 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-28T08:04:07 +2025-10-28 17:04:08,193 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'e8e4cf50-1bb1-4ba2-bb65-39aa5b517ce7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:04:35,862 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'main.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +2025-10-28 17:04:36,062 - main - INFO - AI Service 종료 +INFO: Application shutdown complete. +INFO: Finished server process [37710] +INFO: Started server process [38148] +INFO: Waiting for application startup. +2025-10-28 17:04:36,559 - main - INFO - ============================================================ +2025-10-28 17:04:36,559 - main - INFO - AI Service (Python) 시작 - Port: 8087 +2025-10-28 17:04:36,559 - main - INFO - Claude Model: claude-3-5-sonnet-20241022 +2025-10-28 17:04:36,559 - main - INFO - Redis: 20.249.177.114:6379 +2025-10-28 17:04:36,559 - main - INFO - ============================================================ +2025-10-28 17:04:36,559 - main - INFO - Event Hub 리스너 백그라운드 시작... +2025-10-28 17:04:36,559 - app.services.eventhub_service - INFO - Event Hub 리스너 시작 +INFO: Application startup complete. +2025-10-28 17:04:36,613 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 17:04:36,613 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '58fd0d53-d869-4494-8b6b-e8bd88dbea0f' is being started +2025-10-28 17:04:36,650 - watchfiles.main - INFO - 3 changes detected +2025-10-28 17:04:36,662 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:04:36,679 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:36,679 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:36,679 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:36,679 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:36,679 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:36,679 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:36,679 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:36,679 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:36,690 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:36,741 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:36,793 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:36,844 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:36,844 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:36,896 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:36,896 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:36,896 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:04:37,101 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,101 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:37,101 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,101 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:37,108 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,108 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:37,108 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,108 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:37,116 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,116 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:37,116 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,116 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:37,116 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,116 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:37,116 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,116 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:37,116 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,117 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:37,118 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '58fd0d53-d869-4494-8b6b-e8bd88dbea0f' has claimed partition '0' +2025-10-28 17:04:37,118 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:04:37,189 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:04:37,203 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:37,203 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:37,203 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:37,204 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:37,204 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,204 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:37,204 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,204 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:37,215 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:37,267 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:37,318 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:37,368 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,368 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:37,420 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:37,420 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:37,420 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:04:37,625 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:38,059 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:04:38,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:38,060 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:04:38,112 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:38,164 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:38,164 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:38,164 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:38,164 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:38,165 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:38,165 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:38,165 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:38,165 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:38,165 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:38,165 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:38,165 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:38,165 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:38,165 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:38,183 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '58fd0d53-d869-4494-8b6b-e8bd88dbea0f' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:04:37\nReference:138f54f1-87af-47f2-9e6f-6ea704813199\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:04:37 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T08:04:37"). +2025-10-28 17:04:38,183 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:04:37 +Reference:138f54f1-87af-47f2-9e6f-6ea704813199 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:04:37 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T08:04:37 +2025-10-28 17:04:38,184 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '58fd0d53-d869-4494-8b6b-e8bd88dbea0f' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:04:45,814 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'main.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +2025-10-28 17:04:45,954 - main - INFO - AI Service 종료 +INFO: Application shutdown complete. +INFO: Finished server process [38148] +INFO: Started server process [38177] +INFO: Waiting for application startup. +2025-10-28 17:04:46,403 - main - INFO - ============================================================ +2025-10-28 17:04:46,403 - main - INFO - AI Service (Python) 시작 - Port: 8087 +2025-10-28 17:04:46,403 - main - INFO - Claude Model: claude-3-5-sonnet-20241022 +2025-10-28 17:04:46,403 - main - INFO - Redis: 20.249.177.114:6379 +2025-10-28 17:04:46,403 - main - INFO - ============================================================ +2025-10-28 17:04:46,403 - main - INFO - Event Hub 리스너 백그라운드 시작... +2025-10-28 17:04:46,403 - app.services.eventhub_service - INFO - Event Hub 리스너 시작 +INFO: Application startup complete. +2025-10-28 17:04:46,444 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 17:04:46,444 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' is being started +2025-10-28 17:04:46,481 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:04:46,483 - watchfiles.main - INFO - 3 changes detected +2025-10-28 17:04:46,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:46,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:46,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:46,501 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:46,502 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,502 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:46,502 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,502 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:46,509 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:46,560 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:46,611 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:46,662 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,662 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:46,714 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,714 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:46,714 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:04:46,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,918 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:46,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,919 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:46,929 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,929 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:46,930 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,930 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:46,938 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,939 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:46,939 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,939 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:46,939 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:46,939 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:46,939 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:04:46,939 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:04:46,995 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:04:47,007 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:47,007 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:47,007 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:47,008 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:47,008 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:47,008 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:47,008 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:47,008 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:47,017 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:47,067 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:47,117 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:47,168 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:47,168 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:47,219 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:47,219 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:47,219 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:04:47,426 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:47,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:04:47,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:47,954 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:04:48,007 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:48,059 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:48,059 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:48,059 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:48,059 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:48,059 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:48,059 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:48,060 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:04:48,060 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:04:48,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:48,060 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:04:48,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:48,060 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:04:48,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:04:48,111 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:04:47\nReference:c8570b17-6248-46cd-9688-9ca699e9fb66\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:04:47 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T08:04:47"). +2025-10-28 17:04:48,112 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:04:47 +Reference:c8570b17-6248-46cd-9688-9ca699e9fb66 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:04:47 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T08:04:47 +2025-10-28 17:04:48,112 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:04:54,479 - watchfiles.main - INFO - 3 changes detected +2025-10-28 17:05:02,369 - watchfiles.main - INFO - 3 changes detected +2025-10-28 17:05:12,227 - watchfiles.main - INFO - 3 changes detected +2025-10-28 17:05:21,039 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:05:21,039 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:05:21,096 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:05:21,113 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:21,113 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:21,113 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:21,113 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:05:21,113 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:21,113 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:05:21,114 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:21,114 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:05:21,123 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:21,174 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:21,226 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:05:21,277 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:21,277 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:05:21,328 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:21,328 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:05:21,328 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:05:21,533 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:21,960 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:05:21,960 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:21,960 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:05:22,012 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:22,062 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:22,062 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:05:22,063 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:22,109 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:05:21\nReference:4cd9d82f-80de-434b-b350-bd71c0287db8\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:05:21 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T08:05:21"). +2025-10-28 17:05:22,109 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:05:21 +Reference:4cd9d82f-80de-434b-b350-bd71c0287db8 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:05:21 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T08:05:21 +2025-10-28 17:05:22,109 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:05:46,417 - watchfiles.main - INFO - 3 changes detected +2025-10-28 17:05:56,906 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:05:56,908 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:05:56,975 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:05:56,992 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:56,992 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:56,993 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:56,993 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:05:56,993 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:56,993 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:05:56,993 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:56,993 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:05:57,000 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:57,051 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:57,102 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:05:57,154 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,154 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:05:57,204 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,204 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:05:57,204 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:05:57,409 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,796 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:05:57,796 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,796 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:05:57,848 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,899 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,899 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:05:57,899 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,899 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:05:57,899 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:05:57,899 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:57,899 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:05:57,899 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:05:57,900 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,900 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:05:57,900 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,900 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:05:57,900 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:05:57,924 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:05:57\nReference:be7861da-392c-44bc-a4c3-29ec68c95bb0\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:05:57 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T08:05:57"). +2025-10-28 17:05:57,924 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:05:57 +Reference:be7861da-392c-44bc-a4c3-29ec68c95bb0 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:05:57 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T08:05:57 +2025-10-28 17:05:57,924 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:06:30,887 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:06:30,888 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:06:30,947 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:06:30,964 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:06:30,965 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:06:30,965 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:06:30,965 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:06:30,965 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:30,965 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:06:30,965 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:30,965 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:06:30,976 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:06:31,028 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:06:31,080 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:06:31,132 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,132 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:06:31,184 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,184 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:06:31,184 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:06:31,391 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,743 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:06:31,743 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,743 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:06:31,794 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,846 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,846 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:06:31,846 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,846 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:06:31,846 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:06:31,846 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:06:31,846 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:06:31,847 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:06:31,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,847 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:06:31,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,847 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:06:31,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:06:31,898 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:06:31\nReference:b79f59b6-7921-456f-8eca-457fc4d6bebb\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:06:31 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T08:06:31"). +2025-10-28 17:06:31,898 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:06:31 +Reference:b79f59b6-7921-456f-8eca-457fc4d6bebb +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:06:31 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T08:06:31 +2025-10-28 17:06:31,899 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:07:00,986 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:07:00,987 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:07:01,061 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:07:01,078 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:01,079 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:01,080 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:01,081 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:07:01,084 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:01,085 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:07:01,085 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:01,085 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:07:01,095 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:01,146 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:01,197 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:07:01,248 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:01,249 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:07:01,299 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:01,300 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:07:01,300 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:07:01,508 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:01,937 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:07:01,937 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:01,937 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:07:01,989 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:02,040 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:02,040 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:07:02,041 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:02,054 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:07:01\nReference:371783ba-10be-443a-aca5-29b50ee40d3a\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:07:01 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T08:07:01"). +2025-10-28 17:07:02,054 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:07:01 +Reference:371783ba-10be-443a-aca5-29b50ee40d3a +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:07:01 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T08:07:01 +2025-10-28 17:07:02,054 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:07:19,443 - watchfiles.main - INFO - 3 changes detected +2025-10-28 17:07:33,280 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:07:33,280 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:07:33,335 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:07:33,384 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:33,384 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:33,384 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:33,384 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:07:33,384 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:33,384 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:07:33,384 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:33,385 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:07:33,399 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:33,450 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:33,501 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:07:33,552 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:33,552 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:07:33,603 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:33,603 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:07:33,603 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:07:33,810 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:34,361 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:07:34,361 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:34,361 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:07:34,412 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:34,463 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:07:34,464 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:07:34,509 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:07:33\nReference:ea5d29fd-1014-4712-8d41-a00fd94f27fb\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:07:34 TrackingId:8fa847ac16604a0cba7a40a9082963b1_G27, SystemTracker:gateway5, Timestamp:2025-10-28T08:07:34"). +2025-10-28 17:07:34,509 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:07:33 +Reference:ea5d29fd-1014-4712-8d41-a00fd94f27fb +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:07:34 TrackingId:8fa847ac16604a0cba7a40a9082963b1_G27, SystemTracker:gateway5, Timestamp:2025-10-28T08:07:34 +2025-10-28 17:07:34,510 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:08:04,581 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:08:04,582 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:08:04,630 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:08:04,646 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:04,646 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:04,646 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:04,646 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:08:04,646 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:04,646 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:08:04,646 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:04,647 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:08:04,652 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:04,704 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:04,755 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:08:04,807 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:04,807 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:08:04,858 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:04,858 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:08:04,858 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:08:05,064 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:05,569 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:08:05,569 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:05,569 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:08:05,621 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:05,672 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:05,672 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:08:05,672 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:05,672 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:08:05,672 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:08:05,672 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:05,673 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:05,673 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:08:05,673 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:05,673 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:08:05,673 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:05,673 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:08:05,673 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:05,703 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:08:05\nReference:26a21568-c064-47f1-87e2-cb651502ae55\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:08:05 TrackingId:eb218983088c41f9ab84d4135aef580a_G22, SystemTracker:gateway5, Timestamp:2025-10-28T08:08:05"). +2025-10-28 17:08:05,703 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:08:05 +Reference:26a21568-c064-47f1-87e2-cb651502ae55 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:08:05 TrackingId:eb218983088c41f9ab84d4135aef580a_G22, SystemTracker:gateway5, Timestamp:2025-10-28T08:08:05 +2025-10-28 17:08:05,703 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:08:37,401 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:08:37,402 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:08:37,468 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:08:37,484 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:37,484 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:37,484 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:37,485 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:08:37,485 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:37,485 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:08:37,485 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:37,485 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:08:37,494 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:37,545 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:37,597 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:08:37,648 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:37,648 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:08:37,700 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:37,700 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:08:37,700 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:08:37,906 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:38,258 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:08:38,258 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:38,258 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:08:38,310 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:38,362 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:38,362 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:08:38,362 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:08:38,363 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:08:38,364 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:08:37\nReference:47169845-f0f0-404a-a6d5-864683ef28a9\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:08:38 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-28T08:08:38"). +2025-10-28 17:08:38,364 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:08:37 +Reference:47169845-f0f0-404a-a6d5-864683ef28a9 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:08:38 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-28T08:08:38 +2025-10-28 17:08:38,365 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:09:09,605 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:09:09,607 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:09:09,662 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:09:09,678 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:09,678 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:09,678 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:09,678 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:09:09,678 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:09,678 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:09:09,678 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:09,678 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:09:09,687 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:09,738 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:09,788 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:09:09,839 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:09,839 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:09:09,892 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:09,892 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:09:09,892 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:09:10,098 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:10,610 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:09:10,611 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:10,611 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:09:10,662 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:10,715 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:10,715 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:09:10,715 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:10,715 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:09:10,715 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:09:10,715 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:10,715 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:10,715 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:09:10,715 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:10,716 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:09:10,716 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:10,716 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:09:10,716 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:10,731 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:09:10\nReference:ab43be60-adf6-4aea-8d82-e4725b4ecd54\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:09:10 TrackingId:61ab9501db4349b1920e23e2533cf7a3_G11, SystemTracker:gateway5, Timestamp:2025-10-28T08:09:10"). +2025-10-28 17:09:10,731 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:09:10 +Reference:ab43be60-adf6-4aea-8d82-e4725b4ecd54 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:09:10 TrackingId:61ab9501db4349b1920e23e2533cf7a3_G11, SystemTracker:gateway5, Timestamp:2025-10-28T08:09:10 +2025-10-28 17:09:10,731 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:09:43,720 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:09:43,722 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:09:43,830 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:09:43,876 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:43,876 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:43,876 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:43,877 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:09:43,877 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:43,877 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:09:43,877 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:43,877 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:09:43,892 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:43,943 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:43,994 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:09:44,045 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,045 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:09:44,096 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:09:44,097 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:09:44,303 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,723 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:09:44,723 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,723 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:09:44,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,826 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,826 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:09:44,827 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:09:44,836 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:09:44\nReference:071ca4b3-33b1-4786-b70e-bcfaf749685b\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:09:44 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T08:09:44"). +2025-10-28 17:09:44,837 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:09:44 +Reference:071ca4b3-33b1-4786-b70e-bcfaf749685b +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:09:44 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T08:09:44 +2025-10-28 17:09:44,837 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:10:17,281 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '00cf13e9-ddad-4afe-a015-980842d46f10' has claimed partition '0' +2025-10-28 17:10:17,283 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 17:10:17,351 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 17:10:17,370 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:10:17,370 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:10:17,370 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:10:17,370 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:10:17,371 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:17,371 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:10:17,371 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:17,371 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:10:17,382 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:10:17,432 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:10:17,483 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:10:17,535 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:17,535 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:10:17,585 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:17,585 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:10:17,585 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 17:10:17,793 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:18,296 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 17:10:18,296 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:18,296 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 17:10:18,347 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:18,398 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 17:10:18,399 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 17:10:18,405 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:10:17\nReference:570681eb-8a28-45d1-b76a-c5532f813da2\nTrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T08:10:17 TrackingId:3ab72df796b54b5da6a004e64e0483ac_G14, SystemTracker:gateway5, Timestamp:2025-10-28T08:10:17"). +2025-10-28 17:10:18,405 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:957d9304-0c4b-4a45-aea7-f6646e905633_B6, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T08:10:17 +Reference:570681eb-8a28-45d1-b76a-c5532f813da2 +TrackingId:be732157-4eef-40b6-81cf-cef0b5f47128_B6 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T08:10:17 TrackingId:3ab72df796b54b5da6a004e64e0483ac_G14, SystemTracker:gateway5, Timestamp:2025-10-28T08:10:17 +2025-10-28 17:10:18,405 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '00cf13e9-ddad-4afe-a015-980842d46f10' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 17:10:35,909 - watchfiles.main - INFO - 33 changes detected +WARNING: WatchFiles detected changes in 'main.py', 'app/api/__init__.py', 'app/models/response.py', 'app/models/todo.py', 'app/api/v1/suggestions.py', 'app/services/eventhub_service.py', 'app/api/v1/__init__.py', 'app/services/transcript_service.py', 'app/services/redis_service.py', 'app/prompts/consolidate_prompt.py', 'app/api/v1/transcripts.py', 'app/__init__.py', 'app/models/__init__.py', 'app/services/claude_service.py', 'app/models/keyword.py', 'app/models/transcript.py', 'app/config.py', 'app/services/__init__.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +2025-10-28 17:10:36,058 - main - INFO - AI Service 종료 +INFO: Application shutdown complete. +INFO: Finished server process [38177] +2025-10-28 17:10:36,478 - watchfiles.main - INFO - 21 changes detected +INFO: Started server process [38902] +INFO: Waiting for application startup. +INFO: Application startup complete. +2025-10-28 17:10:36,840 - watchfiles.main - INFO - 6 changes detected +INFO: 127.0.0.1:49958 - "POST /api/v1/transcripts/consolidate HTTP/1.1" 422 Unprocessable Content +INFO: 127.0.0.1:50160 - "GET /actuator/health HTTP/1.1" 404 Not Found +2025-10-28 18:07:05,890 - watchfiles.main - INFO - 1 change detected +2025-10-28 18:07:06,306 - watchfiles.main - INFO - 1 change detected +INFO: 127.0.0.1:50475 - "GET /health HTTP/1.1" 200 OK +INFO: 127.0.0.1:50633 - "POST /api/v1/transcripts/consolidate HTTP/1.1" 422 Unprocessable Content +INFO: 127.0.0.1:51166 - "POST /v1/ai/consolidate HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51492 - "POST /api/v1/consolidate HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51636 - "POST /api/v1/transcripts/consolidate HTTP/1.1" 422 Unprocessable Content +2025-10-29 09:01:09,641 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'main.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +INFO: Application shutdown complete. +INFO: Finished server process [38902] +INFO: Started server process [46587] +INFO: Waiting for application startup. +INFO: Application startup complete. +2025-10-29 09:01:10,297 - watchfiles.main - INFO - 3 changes detected +INFO: 127.0.0.1:53847 - "GET /health HTTP/1.1" 200 OK +INFO: 127.0.0.1:54342 - "POST /api/transcripts/consolidate HTTP/1.1" 422 Unprocessable Content +INFO: 127.0.0.1:54682 - "POST /api/transcripts/consolidate HTTP/1.1" 422 Unprocessable Content +2025-10-29 09:08:41,856 - watchfiles.main - INFO - 2 changes detected +WARNING: WatchFiles detected changes in 'main.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +INFO: Application shutdown complete. +INFO: Finished server process [46587] +INFO: Started server process [47208] +INFO: Waiting for application startup. +INFO: Application startup complete. +2025-10-29 09:08:42,562 - watchfiles.main - INFO - 3 changes detected +2025-10-29 09:08:45,965 - watchfiles.main - INFO - 33 changes detected +WARNING: WatchFiles detected changes in 'main.py', 'app/api/__init__.py', 'app/models/response.py', 'app/models/todo.py', 'app/services/eventhub_service.py', 'app/api/v1/suggestions.py', 'app/api/v1/__init__.py', 'app/services/transcript_service.py', 'app/services/redis_service.py', 'app/prompts/consolidate_prompt.py', 'app/api/v1/transcripts.py', 'app/__init__.py', 'app/models/__init__.py', 'app/services/claude_service.py', 'app/models/keyword.py', 'app/models/transcript.py', 'app/config.py', 'app/services/__init__.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +INFO: Application shutdown complete. +INFO: Finished server process [47208] +2025-10-29 09:08:46,580 - watchfiles.main - INFO - 33 changes detected +INFO: Started server process [47240] +INFO: Waiting for application startup. +2025-10-29 09:08:46,667 - main - INFO - ============================================================ +2025-10-29 09:08:46,667 - main - INFO - AI Service (Python) 시작 - Port: 8087 +2025-10-29 09:08:46,667 - main - INFO - Claude Model: claude-3-5-sonnet-20241022 +2025-10-29 09:08:46,667 - main - INFO - Redis: 20.249.177.114:6379 +2025-10-29 09:08:46,667 - main - INFO - ============================================================ +2025-10-29 09:08:46,667 - main - INFO - Event Hub 리스너 백그라운드 시작... +2025-10-29 09:08:46,667 - app.services.eventhub_service - INFO - Event Hub 리스너 시작 +INFO: Application startup complete. +2025-10-29 09:08:46,942 - watchfiles.main - INFO - 3 changes detected +2025-10-29 09:08:47,294 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-29 09:08:47,294 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'b6567e97-aa19-4c41-a9c1-e42b26be2940' is being started +2025-10-29 09:08:47,378 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-29 09:08:47,577 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:47,577 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:47,577 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:47,577 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-29 09:08:47,578 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:47,578 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:47,578 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:47,578 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:47,699 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:47,751 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:47,801 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-29 09:08:47,856 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:47,856 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:47,907 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:47,907 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:47,907 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-29 09:08:48,302 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,303 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:48,303 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,303 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:48,348 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,348 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:48,348 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,348 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:48,404 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,404 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:48,404 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,404 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:48,404 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,404 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,405 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:48,406 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'b6567e97-aa19-4c41-a9c1-e42b26be2940' has claimed partition '0' +2025-10-29 09:08:48,406 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-29 09:08:48,819 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-29 09:08:48,836 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:48,837 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:48,837 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:48,837 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-29 09:08:48,838 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,838 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:48,838 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:48,838 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:48,853 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:48,905 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-29 09:08:48,956 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-29 09:08:49,007 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:49,007 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-29 09:08:49,059 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:49,059 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-29 09:08:49,059 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-29 09:08:50,610 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:08:50,625 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-29 09:09:34,913 - watchfiles.main - INFO - 33 changes detected +WARNING: WatchFiles detected changes in 'main.py', 'app/api/__init__.py', 'app/models/response.py', 'app/models/todo.py', 'app/api/v1/suggestions.py', 'app/services/eventhub_service.py', 'app/api/v1/__init__.py', 'app/services/transcript_service.py', 'app/services/redis_service.py', 'app/prompts/consolidate_prompt.py', 'app/api/v1/transcripts.py', 'app/__init__.py', 'app/models/__init__.py', 'app/services/claude_service.py', 'app/models/keyword.py', 'app/models/transcript.py', 'app/config.py', 'app/services/__init__.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +2025-10-29 09:09:35,100 - main - INFO - AI Service 종료 +INFO: Application shutdown complete. +INFO: Finished server process [47240] +2025-10-29 09:09:35,522 - watchfiles.main - INFO - 21 changes detected +INFO: Started server process [47375] +INFO: Waiting for application startup. +INFO: Application startup complete. +2025-10-29 09:09:35,885 - watchfiles.main - INFO - 6 changes detected diff --git a/ai-python/main.py b/ai-python/main.py index a92cf16..c1b2e77 100644 --- a/ai-python/main.py +++ b/ai-python/main.py @@ -36,7 +36,7 @@ app.add_middleware( ) # API 라우터 등록 -app.include_router(api_v1_router, prefix="/api/v1") +app.include_router(api_v1_router, prefix="/api") @app.get("/health") diff --git a/ai/src/main/java/com/unicorn/hgzero/ai/infra/config/InMemoryCheckpointStore.java b/ai/src/main/java/com/unicorn/hgzero/ai/infra/config/InMemoryCheckpointStore.java new file mode 100644 index 0000000..0532690 --- /dev/null +++ b/ai/src/main/java/com/unicorn/hgzero/ai/infra/config/InMemoryCheckpointStore.java @@ -0,0 +1,72 @@ +package com.unicorn.hgzero.ai.infra.config; + +import com.azure.messaging.eventhubs.CheckpointStore; +import com.azure.messaging.eventhubs.models.Checkpoint; +import com.azure.messaging.eventhubs.models.PartitionOwnership; +import reactor.core.publisher.Flux; +import reactor.core.publisher.Mono; + +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +/** + * InMemory Checkpoint Store (개발/테스트용) + * + * MVP 개발용으로 메모리에 checkpoint를 저장합니다. + * 운영 환경에서는 Azure Blob Storage 기반 Checkpoint Store 사용 필요. + */ +public class InMemoryCheckpointStore implements CheckpointStore { + + private final Map ownershipMap = new ConcurrentHashMap<>(); + private final Map checkpointMap = new ConcurrentHashMap<>(); + + @Override + public Flux listOwnership(String fullyQualifiedNamespace, String eventHubName, String consumerGroup) { + return Flux.fromIterable(ownershipMap.values()) + .filter(po -> po.getFullyQualifiedNamespace().equals(fullyQualifiedNamespace) + && po.getEventHubName().equals(eventHubName) + && po.getConsumerGroup().equals(consumerGroup)); + } + + @Override + public Flux claimOwnership(List requestedPartitionOwnerships) { + return Flux.fromIterable(requestedPartitionOwnerships) + .map(po -> { + String key = getOwnershipKey(po); + ownershipMap.put(key, po); + return po; + }); + } + + @Override + public Flux listCheckpoints(String fullyQualifiedNamespace, String eventHubName, String consumerGroup) { + return Flux.fromIterable(checkpointMap.values()) + .filter(cp -> cp.getFullyQualifiedNamespace().equals(fullyQualifiedNamespace) + && cp.getEventHubName().equals(eventHubName) + && cp.getConsumerGroup().equals(consumerGroup)); + } + + @Override + public Mono updateCheckpoint(Checkpoint checkpoint) { + String key = getCheckpointKey(checkpoint); + checkpointMap.put(key, checkpoint); + return Mono.empty(); + } + + private String getOwnershipKey(PartitionOwnership ownership) { + return String.format("%s/%s/%s/%s", + ownership.getFullyQualifiedNamespace(), + ownership.getEventHubName(), + ownership.getConsumerGroup(), + ownership.getPartitionId()); + } + + private String getCheckpointKey(Checkpoint checkpoint) { + return String.format("%s/%s/%s/%s", + checkpoint.getFullyQualifiedNamespace(), + checkpoint.getEventHubName(), + checkpoint.getConsumerGroup(), + checkpoint.getPartitionId()); + } +} diff --git a/build/reports/problems/problems-report.html b/build/reports/problems/problems-report.html index 955d178..580b37e 100644 --- a/build/reports/problems/problems-report.html +++ b/build/reports/problems/problems-report.html @@ -650,7 +650,7 @@ code + .copy-button { diff --git a/claude/README-SCHEMA-ANALYSIS.md b/claude/README-SCHEMA-ANALYSIS.md new file mode 100644 index 0000000..a424498 --- /dev/null +++ b/claude/README-SCHEMA-ANALYSIS.md @@ -0,0 +1,322 @@ +# Meeting Service 데이터베이스 스키마 분석 문서 + +## 생성된 문서 목록 + +본 분석은 Meeting Service의 데이터베이스 스키마를 전방위적으로 분석한 결과입니다. + +### 1. SCHEMA-REPORT-SUMMARY.md (메인 보고서) +**파일**: `/Users/jominseo/HGZero/claude/SCHEMA-REPORT-SUMMARY.md` +**내용**: +- Executive Summary (핵심 발견사항) +- 데이터베이스 구조 개요 +- 테이블별 상세 분석 (1.1~1.8) +- 회의록 작성 플로우 +- 사용자별 회의록 구조 +- 마이그레이션 변경사항 (V2, V3, V4) +- 성능 최적화 포인트 +- 핵심 질문 답변 +- 개발 시 주의사항 + +**빠르게 읽기**: Executive Summary부터 시작하세요. + +--- + +### 2. database-schema-analysis.md (상세 분석) +**파일**: `/Users/jominseo/HGZero/claude/database-schema-analysis.md` +**내용**: +- 마이그레이션 파일 현황 (V1~V4) +- 각 테이블의 상세 구조 +- minutes vs agenda_sections 비교 분석 +- 회의록 작성 플로우에서의 테이블 사용 +- 사용자별 회의록 저장 구조 +- SQL 쿼리 패턴 +- 데이터 정규화 현황 +- 인덱스 최적화 방안 +- 데이터 저장 크기 예상 + +**상세 분석 필요시**: 이 문서를 참고하세요. + +--- + +### 3. data-flow-diagram.md (흐름도) +**파일**: `/Users/jominseo/HGZero/claude/data-flow-diagram.md` +**내용**: +- 전체 시스템 플로우 (7 Phase) +- 상태 전이 다이어그램 +- 사용자별 회의록 데이터 구조 +- 인덱스 활용 쿼리 예시 +- 데이터 저장 크기 예상 + +**시각적 이해 필요시**: 이 문서를 참고하세요. + +--- + +### 4. database-diagram.puml (ER 다이어그램) +**파일**: `/Users/jominseo/HGZero/claude/database-diagram.puml` +**포맷**: PlantUML (UML 형식) +**내용**: +- 모든 테이블과 관계 +- V2, V3, V4 마이그레이션 표시 +- 주요 필드 강조 + +**다이어그램 생성**: +```bash +# PlantUML로 PNG 생성 +plantuml database-diagram.puml -o database-diagram.png + +# 또는 온라인 에디터 +https://www.plantuml.com/plantuml/uml/ +``` + +--- + +## 핵심 발견사항 한눈에 보기 + +### 1. Minutes 테이블 구조 +``` +잘못된 이해: minutes.content ← 회의록 내용 +올바른 구조: minutes_sections.content ← 회의록 내용 + minutes ← 메타데이터만 (title, status, version) +``` + +### 2. 사용자별 회의록 (V3) +``` +minutes.user_id = NULL → AI 통합 회의록 +minutes.user_id = 'user@.com' → 개인 회의록 +인덱스: idx_minutes_meeting_user(meeting_id, user_id) +``` + +### 3. AI 분석 결과 저장 (V3, V4) +``` +agenda_sections → 안건별 구조화된 요약 + └─ todos (JSON) → 추출된 Todo [V4] +ai_summaries → 전체 AI 처리 결과 캐시 +todos 테이블 → 상세 관리 필요시만 +``` + +### 4. 정규화 (V2) +``` +이전: meetings.participants = "user1,user2,user3" +현재: meeting_participants (테이블, 복합PK) +``` + +--- + +## 빠른 참조표 + +### 회의록 작성 플로우 +| 단계 | API | 데이터베이스 변화 | +|------|-----|-----------------| +| 1 | CreateMeeting | meetings INSERT | +| 2 | StartMeeting | meetings.status = IN_PROGRESS | +| 3 | CreateMinutes | minutes INSERT (통합 + 개인) | +| 4 | UpdateMinutes | minutes_sections.content UPDATE | +| 5 | EndMeeting | meetings.status = COMPLETED, ended_at [V3] | +| 6 | FinalizeMinutes | minutes.status = FINALIZED, sections locked | +| 7 | AI 분석 | agenda_sections, ai_summaries, todos INSERT | + +### 테이블별 핵심 필드 +``` +meetings : meeting_id, status, ended_at [V3] +minutes : id, meeting_id, user_id [V3], status +minutes_sections : id, minutes_id, content ★ +agenda_sections : id, minutes_id, agenda_number, todos [V4] +ai_summaries : id, meeting_id, result (JSON) +todos : todo_id, extracted_by [V3], extraction_confidence [V3] +``` + +### 인덱스 +``` +PRIMARY: + idx_minutes_meeting_user (meeting_id, user_id) [V3] + idx_sections_meeting (meeting_id) [V3] + idx_sections_agenda (meeting_id, agenda_number) [V3] + +SECONDARY: + idx_todos_extracted (extracted_by) [V3] + idx_todos_meeting (meeting_id) [V3] + idx_summaries_type (meeting_id, summary_type) [V3] +``` + +--- + +## 마이그레이션 타임라인 + +``` +V1 (초기) +├─ meetings, minutes, minutes_sections +├─ todos, meeting_analysis +└─ JPA Hibernate로 자동 생성 + +V2 (2025-10-27) +├─ meeting_participants 테이블 생성 +├─ meetings.participants (CSV) 마이그레이션 +└─ 정규화 완료 + +V3 (2025-10-28) ★ 주요 변경 +├─ minutes.user_id 추가 (사용자별 회의록) +├─ agenda_sections 테이블 신규 (AI 요약) +├─ ai_summaries 테이블 신규 (AI 결과 캐시) +└─ todos 테이블 확장 (extracted_by, extraction_confidence) + +V4 (2025-10-28) +└─ agenda_sections.todos JSON 필드 추가 +``` + +--- + +## 자주 묻는 질문 + +### Q: minutes 테이블에 content 필드가 있나요? +**A**: 없습니다. 실제 회의록 내용은 `minutes_sections.content`에 저장됩니다. +`minutes` 테이블은 메타데이터만 보유합니다 (title, status, version 등). + +### Q: 사용자별 회의록은 어떻게 구분되나요? +**A**: `minutes.user_id` 컬럼으로 구분됩니다. +- NULL: AI 통합 회의록 +- NOT NULL: 개인별 회의록 (각 참석자마다 생성) + +### Q: AI 분석은 모든 회의록을 처리하나요? +**A**: 아니요. 통합 회의록(`user_id=NULL`)만 분석합니다. +개인별 회의록(`user_id NOT NULL`)은 개인 기록용이며 AI 분석 대상이 아닙니다. + +### Q: agenda_sections와 minutes_sections의 차이는? +**A**: +- `minutes_sections`: 사용자가 작성한 순차적 회의록 섹션 +- `agenda_sections`: AI가 분석한 안건별 구조화된 요약 + +### Q: Todo는 어디에 저장되나요? +**A**: 두 곳에 저장 가능합니다. +1. `agenda_sections.todos` (JSON): 안건별 요약의 일부 +2. `todos` 테이블: 상세 관리 필요시만 + +--- + +## 성능 최적화 팁 + +### 복합 인덱스 활용 +```sql +-- 가장 중요한 쿼리 (V3) +SELECT * FROM minutes +WHERE meeting_id = ? AND user_id = ?; + └─ 인덱스: idx_minutes_meeting_user (meeting_id, user_id) +``` + +### 추천 추가 인덱스 +```sql +CREATE INDEX idx_minutes_status_created + ON minutes(status, created_at DESC); + +CREATE INDEX idx_agenda_meeting_created + ON agenda_sections(meeting_id, created_at DESC); +``` + +### 쿼리 패턴 +```sql +-- 통합 회의록 조회 (가장 흔함) +SELECT m.*, ms.* FROM minutes m +LEFT JOIN minutes_sections ms ON m.id = ms.minutes_id +WHERE m.meeting_id = ? AND m.user_id IS NULL + +-- 개인 회의록 조회 +SELECT m.*, ms.* FROM minutes m +LEFT JOIN minutes_sections ms ON m.id = ms.minutes_id +WHERE m.meeting_id = ? AND m.user_id = ? + +-- AI 분석 결과 조회 +SELECT * FROM agenda_sections +WHERE meeting_id = ? ORDER BY agenda_number +``` + +--- + +## 문서 읽기 순서 추천 + +### 1단계: 빠른 이해 (5분) +→ `SCHEMA-REPORT-SUMMARY.md`의 Executive Summary만 읽기 + +### 2단계: 구조 이해 (15분) +→ `database-diagram.puml` (다이어그램 확인) +→ `data-flow-diagram.md`의 Phase 1~7 읽기 + +### 3단계: 상세 이해 (30분) +→ `SCHEMA-REPORT-SUMMARY.md` 전체 읽기 +→ `database-schema-analysis.md`의 핵심 섹션 읽기 + +### 4단계: 개발 참고 (필요시) +→ `database-schema-analysis.md`의 쿼리 예시 +→ `data-flow-diagram.md`의 인덱스 활용 섹션 + +--- + +## 개발 체크리스트 + +회의록 작성 기능 개발시: + +### 데이터 저장 +- [ ] 회의록 내용은 `minutes_sections.content`에 저장 +- [ ] `minutes` 테이블에는 메타데이터만 저장 (title, status) +- [ ] 회의 종료시 `minutes.user_id` 값 확인 (NULL vs 사용자ID) + +### AI 분석 +- [ ] 통합 회의록(`user_id=NULL`)만 AI 분석 대상으로 처리 +- [ ] `agenda_sections`은 통합 회의록에만 생성 +- [ ] `ai_summaries`에 전체 결과 캐싱 + +### 쿼리 성능 +- [ ] 복합 인덱스 활용: `idx_minutes_meeting_user` +- [ ] 조회시 `WHERE meeting_id AND user_id` 조건 사용 +- [ ] 기존 인덱스 모두 생성 확인 + +### 데이터 무결성 +- [ ] 회의 종료시 `ended_at` 기록 (V3) +- [ ] 최종화시 `minutes_sections` locked 처리 +- [ ] AI 추출 Todo의 `extraction_confidence` 값 확인 + +--- + +## 관련 파일 위치 + +**마이그레이션**: +``` +/Users/jominseo/HGZero/meeting/src/main/resources/db/migration/ +├─ V2__create_meeting_participants_table.sql +├─ V3__add_meeting_end_support.sql +└─ V4__add_todos_to_agenda_sections.sql +``` + +**엔티티**: +``` +/Users/jominseo/HGZero/meeting/src/main/java/.../entity/ +├─ MeetingEntity.java +├─ MinutesEntity.java +├─ MinutesSectionEntity.java +├─ AgendaSectionEntity.java [V3] +├─ TodoEntity.java +└─ MeetingParticipantEntity.java [V2] +``` + +**서비스**: +``` +/Users/jominseo/HGZero/meeting/src/main/java/.../service/ +├─ MinutesService.java +├─ MinutesSectionService.java +└─ MinutesAnalysisEventConsumer.java (비동기 AI 분석) +``` + +--- + +## 지원 + +이 문서에 대한 추가 질문이나 불명확한 부분이 있으면: + +1. `SCHEMA-REPORT-SUMMARY.md`의 "핵심 질문 답변" 섹션 확인 +2. `database-schema-analysis.md`에서 상세 내용 검색 +3. `data-flow-diagram.md`에서 흐름도 재확인 + +--- + +**문서 작성일**: 2025-10-28 +**분석 대상**: Meeting Service (feat/meeting-ai 브랜치) +**마이그레이션 버전**: V1~V4 +**상태**: 완료 및 검증됨 diff --git a/claude/SCHEMA-REPORT-SUMMARY.md b/claude/SCHEMA-REPORT-SUMMARY.md new file mode 100644 index 0000000..da94479 --- /dev/null +++ b/claude/SCHEMA-REPORT-SUMMARY.md @@ -0,0 +1,607 @@ +# Meeting Service 데이터베이스 스키마 분석 최종 보고서 + +**작성일**: 2025-10-28 +**분석 대상**: Meeting Service (feat/meeting-ai 브랜치) +**분석 범위**: 마이그레이션 V1~V4, 엔티티 구조, 데이터 플로우 + +--- + +## Executive Summary + +### 핵심 발견사항 + +1. **minutes 테이블에 content 필드가 없음** + - 실제 회의록 내용은 `minutes_sections.content`에 저장 + - minutes 테이블은 메타데이터만 보유 (title, status, version 등) + +2. **사용자별 회의록 완벽하게 지원 (V3)** + - `minutes.user_id = NULL`: AI 통합 회의록 + - `minutes.user_id = 참석자ID`: 개인별 회의록 + - 인덱스: `idx_minutes_meeting_user` (meeting_id, user_id) + +3. **AI 분석 결과 구조화 저장 (V3, V4)** + - `agenda_sections`: 안건별 구조화된 요약 + - `ai_summaries`: AI 처리 결과 캐싱 + - `todos` (V4): 각 안건의 JSON으로 저장 + +4. **정규화 완료 (V2)** + - `meetings.participants` (CSV) → `meeting_participants` (테이블) + - 복합 PK: (meeting_id, user_id) + +--- + +## 데이터베이스 구조 개요 + +### 테이블 분류 + +**핵심 테이블** (V1): +- `meetings`: 회의 기본 정보 +- `minutes`: 회의록 메타데이터 +- `minutes_sections`: 회의록 섹션 (실제 내용) + +**참석자 관리** (V2): +- `meeting_participants`: 회의 참석자 정보 + +**AI 분석** (V3): +- `agenda_sections`: 안건별 AI 요약 +- `ai_summaries`: AI 처리 결과 캐시 +- `todos`: Todo 아이템 (expanded) + +--- + +## 1. 핵심 테이블별 상세 분석 + +### 1.1 meetings (회의 기본 정보) + +**구성**: +- PK: meeting_id (VARCHAR(50)) +- 주요 필드: title, purpose, description +- 상태: SCHEDULED → IN_PROGRESS → COMPLETED +- 시간: scheduled_at, started_at, ended_at (V3) + +**중요 변경**: +- V3에서 `ended_at` 추가 +- 회의 정확한 종료 시간 기록 + +```sql +-- 조회 예시 +SELECT * FROM meetings +WHERE status = 'COMPLETED' + AND ended_at >= NOW() - INTERVAL '7 days' +ORDER BY ended_at DESC; +``` + +--- + +### 1.2 minutes (회의록 메타데이터) + +**구성**: +``` +minutes_id (PK) +├─ meeting_id (FK) +├─ user_id (V3) ← NULL: AI 통합 회의록 / NOT NULL: 개인 회의록 +├─ title +├─ status (DRAFT, FINALIZED) +├─ version +├─ created_by, finalized_by +└─ created_at, finalized_at +``` + +**중요**: +- **content 필드 없음** → minutes_sections에 저장 +- 메타데이터만 관리 (생성자, 확정자, 버전 등) + +**쿼리 패턴**: +```sql +-- AI 통합 회의록 +SELECT * FROM minutes +WHERE meeting_id = ? AND user_id IS NULL; + +-- 특정 사용자의 회의록 +SELECT * FROM minutes +WHERE meeting_id = ? AND user_id = ?; + +-- 복합 인덱스 활용: idx_minutes_meeting_user +``` + +--- + +### 1.3 minutes_sections (회의록 섹션 - 실제 내용) + +**구성**: +``` +section_id (PK) +├─ minutes_id (FK) ← 어느 회의록에 속하는가 +├─ type (AGENDA, DISCUSSION, DECISION, ACTION_ITEM) +├─ title +├─ content ← ★ 실제 회의록 내용 +├─ order +├─ verified (검증 완료) +├─ locked (수정 불가) +└─ locked_by +``` + +**핵심 특성**: +- **content**: 사용자가 작성한 실제 내용 +- **locked**: finalize_minutes 호출시 잠금 +- **verified**: 확정시 TRUE로 설정 + +**데이터 흐름**: +``` +1. CreateMinutes → minutes_sections 초기 생성 +2. UpdateMinutes → content 저장 (여러 번) +3. FinalizeMinutes → locked=TRUE, verified=TRUE +4. (locked 상태에서 수정 불가) +``` + +--- + +### 1.4 agenda_sections (AI 요약 - V3) + +**구성**: +``` +id (PK, UUID) +├─ minutes_id (FK) ← 통합 회의록만 (user_id=NULL) +├─ meeting_id (FK) +├─ agenda_number (1, 2, 3...) +├─ agenda_title +├─ ai_summary_short (1줄 요약) +├─ discussions (3-5문장 논의) +├─ decisions (JSON 배열) +├─ pending_items (JSON 배열) +├─ opinions (JSON 배열: {speaker, opinion}) +└─ todos (JSON 배열 [V4]) +``` + +**V4 추가 사항**: +- `todos` JSON 필드 추가 +- 안건별 추출된 Todo 저장 + +```json +{ + "title": "시장 조사 보고서 작성", + "assignee": "김민준", + "dueDate": "2025-02-15", + "description": "20-30대 타겟 시장 조사", + "priority": "HIGH" +} +``` + +**중요**: +- **통합 회의록만 분석** (user_id=NULL인 것) +- 참석자별 회의록(user_id NOT NULL)은 AI 분석 대상 아님 +- minutes_id로 통합 회의록 참조 + +--- + +### 1.5 minutes_sections vs agenda_sections + +| 항목 | minutes_sections | agenda_sections | +|------|-----------------|-----------------| +| **용도** | 사용자 작성 | AI 요약 | +| **모든 회의록** | ✓ 통합 + 개인 | ✗ 통합만 | +| **구조** | 순차적 섹션 | 안건별 구조화 | +| **내용 저장** | content (TEXT) | JSON 필드들 | +| **관계** | 1:N (minutes과) | N:1 (minutes과) | +| **목적** | 기록 | 분석/요약 | + +**생성 흐름**: +``` +회의 시작 + ↓ +minutes 생성 (통합 + 개인) + ↓ +minutes_sections 생성 (4개 그룹) + ↓ +사용자 작성 중... + ↓ +회의 종료 → FinalizeMinutes + ↓ +minutes_sections locked + ↓ +AI 분석 (비동기) + ↓ +agenda_sections 생성 (통합 회의록 기반) +``` + +--- + +### 1.6 ai_summaries (AI 처리 결과 - V3) + +**구성**: +``` +id (PK, UUID) +├─ meeting_id (FK) +├─ summary_type (CONSOLIDATED, TODO_EXTRACTION) +├─ source_minutes_ids (JSON: 사용된 회의록 ID 배열) +├─ result (JSON: AI 응답 전체) +├─ processing_time_ms (처리 시간) +├─ model_version (claude-3.5-sonnet) +├─ keywords (JSON: 키워드 배열) +└─ statistics (JSON: {participants, agendas, todos}) +``` + +**용도**: +- AI 처리 결과 캐싱 +- 재처리 필요시 참조 +- 성능 통계 기록 + +--- + +### 1.7 todos (Todo 아이템) + +**기본 구조**: +``` +todo_id (PK) +├─ meeting_id (FK) +├─ minutes_id (FK) +├─ title +├─ description +├─ assignee_id +├─ due_date +├─ status (PENDING, COMPLETED) +├─ priority (HIGH, MEDIUM, LOW) +└─ completed_at +``` + +**V3 추가 필드**: +``` +├─ extracted_by (AI / MANUAL) ← AI 자동 추출 vs 수동 +├─ section_reference (안건 참조) +└─ extraction_confidence (0.00~1.00) ← AI 신뢰도 +``` + +**저장 전략**: +1. `agenda_sections.todos` (JSON): 간단한 Todo, 기본 저장 위치 +2. `todos` 테이블: 상세 관리 필요시만 추가 저장 + +--- + +### 1.8 meeting_participants (참석자 관리 - V2) + +**구성**: +``` +PK: (meeting_id, user_id) +├─ invitation_status (PENDING, ACCEPTED, DECLINED) +├─ attended (BOOLEAN) +└─ created_at, updated_at +``` + +**V2 개선**: +- 이전: meetings.participants (CSV 문자열) +- 현재: 별도 테이블 (정규화) +- 복합 PK로 중복 방지 + +--- + +## 2. 회의록 작성 플로우 (전체) + +### 단계별 데이터 변화 + +``` +PHASE 1: 회의 준비 +═════════════════════════════════════════════ +1. CreateMeeting + → INSERT meetings (status='SCHEDULED') + → INSERT meeting_participants (5명) + +PHASE 2: 회의 진행 +═════════════════════════════════════════════ +2. StartMeeting + → UPDATE meetings SET status='IN_PROGRESS' + +3. CreateMinutes (회의 중) + → INSERT minutes (user_id=NULL) × 1 (통합) + → INSERT minutes (user_id=user_id) × 5 (개인) + → INSERT minutes_sections (초기 생성) + +4. UpdateMinutes (여러 번) + → UPDATE minutes_sections SET content='...' + +PHASE 3: 회의 종료 +═════════════════════════════════════════════ +5. EndMeeting + → UPDATE meetings SET + status='COMPLETED', + ended_at=NOW() [V3] + +PHASE 4: 회의록 최종화 +═════════════════════════════════════════════ +6. FinalizeMinutes + → UPDATE minutes SET + status='FINALIZED' + → UPDATE minutes_sections SET + locked=TRUE, + verified=TRUE + +PHASE 5: AI 분석 (비동기) +═════════════════════════════════════════════ +7. MinutesAnalysisEventConsumer + → Read minutes (user_id=NULL) + → Read minutes_sections + → Call AI Service + → INSERT agenda_sections [V3] + → INSERT ai_summaries [V3] + → INSERT todos [V3 확장] +``` + +--- + +## 3. 사용자별 회의록 구조 + +### 데이터 분리 방식 + +**1개 회의 (참석자 5명)**: + +``` +meetings: 1개 + ├─ meeting_id = 'meeting-001' + └─ status = COMPLETED + +meeting_participants: 5개 + ├─ (meeting-001, user1@example.com) + ├─ (meeting-001, user2@example.com) + ├─ (meeting-001, user3@example.com) + ├─ (meeting-001, user4@example.com) + └─ (meeting-001, user5@example.com) + +minutes: 6개 [V3] + ├─ (id=consol-1, meeting_id=meeting-001, user_id=NULL) + │ → 통합 회의록 (AI 분석 대상) + ├─ (id=user1-min, meeting_id=meeting-001, user_id=user1@example.com) + │ → 사용자1 개인 회의록 + ├─ (id=user2-min, meeting_id=meeting-001, user_id=user2@example.com) + │ → 사용자2 개인 회의록 + ├─ ... (user3, user4, user5) + └─ + +minutes_sections: 수십 개 (6개 회의록 × N개 섹션) + ├─ Group 1: consol-1의 섹션들 (AI 작성) + ├─ Group 2: user1-min의 섹션들 (사용자1 작성) + ├─ Group 3: user2-min의 섹션들 (사용자2 작성) + └─ ... (user3, user4, user5) + +agenda_sections: 5개 [V3] + ├─ (id=ag-1, minutes_id=consol-1, agenda_number=1) + ├─ (id=ag-2, minutes_id=consol-1, agenda_number=2) + └─ ... (3, 4, 5) +``` + +**핵심**: +- 참석자별 회의록은 minutes.user_id로 구분 +- 인덱스 활용: `idx_minutes_meeting_user` +- AI 분석: 통합 회의록만 (user_id=NULL) + +--- + +## 4. 마이그레이션 변경사항 요약 + +### V2 (2025-10-27) + +```sql +-- meeting_participants 테이블 생성 +CREATE TABLE meeting_participants ( + meeting_id, user_id (복합 PK), + invitation_status, attended +) + +-- 데이터 마이그레이션 +SELECT TRIM(participant) FROM meetings.participants (CSV) + → INSERT INTO meeting_participants + +-- meetings.participants 컬럼 삭제 +ALTER TABLE meetings DROP COLUMN participants +``` + +**영향**: 정규화 완료, 중복 데이터 제거 + +--- + +### V3 (2025-10-28) + +#### 3-1. minutes 테이블 확장 +```sql +ALTER TABLE minutes ADD COLUMN user_id VARCHAR(100); +CREATE INDEX idx_minutes_meeting_user ON minutes(meeting_id, user_id); +``` + +**의미**: 사용자별 회의록 지원 + +--- + +#### 3-2. agenda_sections 테이블 신규 +```sql +CREATE TABLE agenda_sections ( + id, minutes_id, meeting_id, + agenda_number, agenda_title, + ai_summary_short, discussions, + decisions (JSON), + pending_items (JSON), + opinions (JSON) +) +``` + +**의미**: AI 요약을 구조화된 형식으로 저장 + +--- + +#### 3-3. ai_summaries 테이블 신규 +```sql +CREATE TABLE ai_summaries ( + id, meeting_id, summary_type, + source_minutes_ids (JSON), + result (JSON), + processing_time_ms, + model_version, + keywords (JSON), + statistics (JSON) +) +``` + +**의미**: AI 처리 결과 캐싱 + +--- + +#### 3-4. todos 테이블 확장 +```sql +ALTER TABLE todos ADD COLUMN extracted_by VARCHAR(50) DEFAULT 'AI'; +ALTER TABLE todos ADD COLUMN section_reference VARCHAR(200); +ALTER TABLE todos ADD COLUMN extraction_confidence DECIMAL(3,2); +``` + +**의미**: AI 자동 추출 추적 + +--- + +### V4 (2025-10-28) + +```sql +ALTER TABLE agenda_sections ADD COLUMN todos JSON; +``` + +**의미**: 안건별 Todo를 JSON으로 저장 + +--- + +## 5. 성능 최적화 + +### 현재 인덱스 + +``` +meetings: + ├─ PK: meeting_id + +minutes: + ├─ PK: id + └─ idx_minutes_meeting_user (meeting_id, user_id) [V3] + +minutes_sections: + ├─ PK: id + └─ (minutes_id로 FK 지원) + +agenda_sections: [V3] + ├─ PK: id + ├─ idx_sections_meeting (meeting_id) + ├─ idx_sections_agenda (meeting_id, agenda_number) + └─ idx_sections_minutes (minutes_id) + +ai_summaries: [V3] + ├─ PK: id + ├─ idx_summaries_meeting (meeting_id) + ├─ idx_summaries_type (meeting_id, summary_type) + └─ idx_summaries_created (created_at) + +todos: + ├─ PK: todo_id + ├─ idx_todos_extracted (extracted_by) [V3] + └─ idx_todos_meeting (meeting_id) [V3] + +meeting_participants: [V2] + ├─ PK: (meeting_id, user_id) + ├─ idx_user_id (user_id) + └─ idx_invitation_status (invitation_status) +``` + +### 추천 추가 인덱스 + +```sql +-- 자주 조회하는 패턴 +CREATE INDEX idx_minutes_status_created + ON minutes(status, created_at DESC); + +CREATE INDEX idx_agenda_meeting_created + ON agenda_sections(meeting_id, created_at DESC); + +CREATE INDEX idx_todos_meeting_assignee + ON todos(meeting_id, assignee_id); +``` + +--- + +## 6. 핵심 질문 답변 + +### Q1: minutes 테이블에 content 필드가 있는가? +**A**: **없음** +- minutes: 메타데이터만 (title, status, version 등) +- 실제 내용: minutes_sections.content + +### Q2: minutes_section과 agenda_sections의 차이점? +**A**: +| 항목 | minutes_sections | agenda_sections | +|------|-----------------|-----------------| +| 목적 | 사용자 작성 | AI 요약 | +| 모든 회의록 | O | X (통합만) | +| 내용 저장 | content (TEXT) | JSON | + +### Q3: 사용자별 회의록 저장 방식? +**A**: +- minutes.user_id로 구분 +- NULL: AI 통합회의록 +- NOT NULL: 개인별 회의록 +- 인덱스: idx_minutes_meeting_user + +### Q4: V3, V4 주요 변경? +**A**: +- V3: user_id, agenda_sections, ai_summaries, todos 확장 +- V4: agenda_sections.todos JSON 추가 + +--- + +## 7. 개발 시 주의사항 + +### Do's ✓ +- minutes_sections.content에 실제 내용 저장 +- AI 분석시 user_id=NULL인 minutes만 처리 +- agenda_sections.todos와 todos 테이블 동시 저장 (필요시) +- 복합 인덱스 활용 (meeting_id, user_id) + +### Don'ts ✗ +- minutes 테이블에 content 저장 (없음) +- 참석자별 회의록(user_id NOT NULL)을 AI 분석 (통합만) +- agenda_sections를 모든 minutes에 생성 (통합만) +- 인덱스 무시한 풀 스캔 + +--- + +## 8. 파일 위치 및 참조 + +**마이그레이션 파일**: +- `/Users/jominseo/HGZero/meeting/src/main/resources/db/migration/V2__*.sql` +- `/Users/jominseo/HGZero/meeting/src/main/resources/db/migration/V3__*.sql` +- `/Users/jominseo/HGZero/meeting/src/main/resources/db/migration/V4__*.sql` + +**엔티티**: +- `MeetingEntity`, `MinutesEntity`, `MinutesSectionEntity` +- `AgendaSectionEntity`, `TodoEntity`, `MeetingParticipantEntity` + +**서비스**: +- `MinutesService`, `MinutesSectionService` +- `MinutesAnalysisEventConsumer` (비동기) + +--- + +## 9. 결론 + +### 핵심 설계 원칙 +1. **메타데이터 vs 내용 분리**: minutes (메타) vs minutes_sections (내용) +2. **사용자별 격리**: user_id 컬럼으로 개인 회의록 관리 +3. **AI 결과 구조화**: JSON으로 유연성과 성능 확보 +4. **정규화 완료**: 참석자 정보 테이블화 + +### 검증 사항 +- V3, V4 마이그레이션 정상 적용 +- 모든 인덱스 생성됨 +- 관계 설정 정상 (FK, 1:N) + +### 다음 단계 +- 성능 모니터링 (쿼리 실행 계획) +- 추가 인덱스 검토 +- AI 분석 결과 검증 +- 참석자별 회의록 사용성 테스트 + +--- + +**문서 정보**: +- 작성자: Database Architecture Analysis +- 대상 서비스: Meeting Service (AI 통합 회의록) +- 최종 버전: 2025-10-28 diff --git a/claude/data-flow-diagram.md b/claude/data-flow-diagram.md new file mode 100644 index 0000000..f3492c1 --- /dev/null +++ b/claude/data-flow-diagram.md @@ -0,0 +1,560 @@ +# Meeting Service 데이터 플로우 다이어그램 + +## 1. 전체 시스템 플로우 + +``` +┌──────────────────────────────────────────────────────────────────────────────┐ +│ 회의 생명주기 데이터 플로우 │ +└──────────────────────────────────────────────────────────────────────────────┘ + +Phase 1: 회의 준비 단계 +════════════════════════════════════════════════════════════════════════════════ + + 사용자가 회의 생성 + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 1-1. CreateMeeting API │ + │ ────────────────────────────────────────────────────────────│ + │ INSERT INTO meetings ( │ + │ meeting_id, title, purpose, scheduled_at, │ + │ organizer_id, status, created_at │ + │ ) │ + │ VALUES (...) │ + │ │ + │ + INSERT INTO meeting_participants [V2] │ + │ (meeting_id, user_id, invitation_status) │ + │ FOR EACH participant │ + └─────────────────────────────────────────────────────────────┘ + ↓ + DB State: + ✓ meetings: SCHEDULED status + ✓ meeting_participants: PENDING status + + +Phase 2: 회의 진행 중 +════════════════════════════════════════════════════════════════════════════════ + + 회의 시작 (start_meeting API) + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 2-1. StartMeeting UseCase │ + │ ────────────────────────────────────────────────────────────│ + │ UPDATE meetings SET │ + │ status = 'IN_PROGRESS', │ + │ started_at = NOW() │ + │ WHERE meeting_id = ? │ + └─────────────────────────────────────────────────────────────┘ + ↓ + 회의 중 회의록 작성 + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 2-2. CreateMinutes API (회의 시작 후) │ + │ ────────────────────────────────────────────────────────────│ + │ INSERT INTO minutes ( │ + │ id, meeting_id, user_id, title, status, │ + │ created_by, version, created_at │ + │ ) VALUES ( │ + │ 'consolidated-minutes-1', 'meeting-001', │ + │ NULL, [V3] ← AI 통합 회의록 표시 │ + │ '2025년 1월 10일 회의', 'DRAFT', ... │ + │ ) │ + │ │ + │ + 각 참석자별 회의록도 동시 생성: │ + │ INSERT INTO minutes ( │ + │ id, meeting_id, user_id, ... │ + │ ) VALUES ( │ + │ 'user-minutes-user1', 'meeting-001', │ + │ 'user1@example.com', [V3] ← 참석자 구분 │ + │ ... │ + │ ) │ + └─────────────────────────────────────────────────────────────┘ + ↓ + DB State: + ✓ meetings: IN_PROGRESS + ✓ minutes (multiple records): + - 1개의 통합 회의록 (user_id=NULL) + - N개의 참석자별 회의록 (user_id=참석자ID) + ✓ minutes_sections: 초기 섹션 생성 + + +Phase 3: 회의록 작성 중 +════════════════════════════════════════════════════════════════════════════════ + + 사용자가 회의록 섹션 작성 + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 3-1. UpdateMinutes API (여러 번) │ + │ ────────────────────────────────────────────────────────────│ + │ │ + │ 각 섹션별로: │ + │ INSERT INTO minutes_sections ( │ + │ id, minutes_id, type, title, content, order │ + │ ) VALUES ( │ + │ 'section-1', 'consolidated-minutes-1', │ + │ 'DISCUSSION', '신제품 기획 방향', │ + │ '신제품의 주요 타겟은 20-30대 직장인으로 설정...', │ + │ 1 │ + │ ) │ + │ │ + │ UPDATE minutes_sections SET │ + │ content = '...', │ + │ updated_at = NOW() │ + │ WHERE id = 'section-1' │ + │ │ + │ ★ 중요: content 컬럼에 실제 회의록 내용 저장! │ + │ minutes 테이블에는 content가 없음 │ + └─────────────────────────────────────────────────────────────┘ + ↓ + DB State: + ✓ minutes: status='DRAFT' + ✓ minutes_sections: 사용자가 작성한 내용 축적 + ✓ 각 참석자가 자신의 회의록을 독립적으로 작성 + + +Phase 4: 회의 종료 +════════════════════════════════════════════════════════════════════════════════ + + 회의 종료 (end_meeting API) + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 4-1. EndMeeting UseCase [V3 추가] │ + │ ────────────────────────────────────────────────────────────│ + │ UPDATE meetings SET │ + │ status = 'COMPLETED', │ + │ ended_at = NOW() [V3] ← 종료 시간 기록 │ + │ WHERE meeting_id = ? │ + │ │ + │ ★ 중요: 회의 종료와 동시에 회의록 준비 시작 │ + └─────────────────────────────────────────────────────────────┘ + ↓ + DB State: + ✓ meetings: status='COMPLETED', ended_at=현재시간 + ✓ minutes: 계속 DRAFT (사용자 추가 편집 가능) + + +Phase 5: 회의록 최종화 +════════════════════════════════════════════════════════════════════════════════ + + 사용자가 회의록 최종화 요청 + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 5-1. FinalizeMinutes API │ + │ ────────────────────────────────────────────────────────────│ + │ UPDATE minutes SET │ + │ status = 'FINALIZED', │ + │ finalized_by = ?, │ + │ finalized_at = NOW(), │ + │ version = version + 1 │ + │ WHERE id = 'consolidated-minutes-1' │ + │ │ + │ UPDATE minutes_sections SET │ + │ locked = TRUE, │ + │ locked_by = ?, │ + │ verified = TRUE │ + │ WHERE minutes_id = 'consolidated-minutes-1' │ + │ │ + │ ★ 중요: minutes_id를 통해 관련된 모든 섹션 잠금 │ + └─────────────────────────────────────────────────────────────┘ + ↓ + Event 발생: MinutesAnalysisRequestEvent (Async) + ↓ + DB State: + ✓ minutes: status='FINALIZED' + ✓ minutes_sections: locked=TRUE, verified=TRUE + ✓ 모든 섹션이 수정 불가능 + + +Phase 6: AI 분석 처리 (비동기 - MinutesAnalysisEventConsumer) +════════════════════════════════════════════════════════════════════════════════ + + 이벤트 수신: MinutesAnalysisRequestEvent + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 6-1. 통합 회의록 조회 (user_id=NULL) │ + │ ────────────────────────────────────────────────────────────│ + │ SELECT m.*, GROUP_CONCAT(ms.content) AS full_content │ + │ FROM minutes m │ + │ LEFT JOIN minutes_sections ms ON m.id = ms.minutes_id │ + │ WHERE m.meeting_id = ? AND m.user_id IS NULL │ + │ ORDER BY ms.order │ + │ │ + │ ★ 참석자별 회의록은 AI 분석 대상이 아님 │ + │ user_id IS NOT NULL인 것들은 개인 기록용 │ + └─────────────────────────────────────────────────────────────┘ + ↓ + AI Service 호출 (Claude API) + ↓ + AI가 회의록 분석 + - 안건별로 분리 + - 요약 생성 + - 결정사항 추출 + - 보류사항 추출 + - Todo 추출 + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 6-2. agenda_sections 생성 [V3] │ + │ ────────────────────────────────────────────────────────────│ + │ INSERT INTO agenda_sections ( │ + │ id, minutes_id, meeting_id, agenda_number, │ + │ agenda_title, ai_summary_short, discussions, │ + │ decisions, pending_items, opinions, todos [V4] │ + │ ) VALUES ( │ + │ 'uuid-1', 'consolidated-minutes-1', 'meeting-001', │ + │ 1, '신제품 기획 방향성', │ + │ '타겟 고객을 20-30대로 설정...', │ + │ '신제품의 주요 타겟 고객층을 20-30대...', │ + │ ["타겟 고객: 20-30대 직장인", "UI 개선 최우선"], │ + │ [], │ + │ [{"speaker": "김민준", "opinion": "..."}], │ + │ [ │ + │ {"title": "시장 조사", "assignee": "김민준", │ + │ "dueDate": "2025-02-15", "priority": "HIGH"} │ + │ ] [V4] │ + │ ) │ + │ │ + │ FOR EACH agenda detected by AI │ + └─────────────────────────────────────────────────────────────┘ + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 6-3. ai_summaries 저장 [V3] │ + │ ────────────────────────────────────────────────────────────│ + │ INSERT INTO ai_summaries ( │ + │ id, meeting_id, summary_type, │ + │ source_minutes_ids, result, processing_time_ms, │ + │ model_version, keywords, statistics, created_at │ + │ ) VALUES ( │ + │ 'summary-uuid-1', 'meeting-001', 'CONSOLIDATED', │ + │ ["consolidated-minutes-1"], │ + │ {AI 응답 전체 JSON}, │ + │ 2500, │ + │ 'claude-3.5-sonnet', │ + │ ["신제품", "타겟층", "UI개선"], │ + │ {"participants": 5, "agendas": 3, "todos": 8}, │ + │ NOW() │ + │ ) │ + └─────────────────────────────────────────────────────────────┘ + ↓ + ┌─────────────────────────────────────────────────────────────┐ + │ 6-4. todos 저장 [V3 확장] │ + │ ────────────────────────────────────────────────────────────│ + │ INSERT INTO todos ( │ + │ todo_id, meeting_id, minutes_id, title, │ + │ assignee_id, due_date, status, priority, │ + │ extracted_by, section_reference, │ + │ extraction_confidence, created_at │ + │ ) VALUES ( │ + │ 'todo-uuid-1', 'meeting-001', │ + │ 'consolidated-minutes-1', '시장 조사 보고서 작성', │ + │ 'user1@example.com', '2025-02-15', 'PENDING', 'HIGH', │ + │ 'AI', '안건 1: 신제품 기획', [V3] │ + │ 0.95, [V3] 신뢰도 │ + │ NOW() │ + │ ) │ + │ │ + │ ★ 주의: agenda_sections.todos (JSON)에도 동시 저장 │ + │ 개별 관리 필요시만 todos 테이블에 저장 │ + └─────────────────────────────────────────────────────────────┘ + ↓ + DB State: + ✓ agenda_sections: AI 요약 결과 저장됨 (안건별) + ✓ ai_summaries: AI 처리 결과 캐시 + ✓ todos: AI 추출 Todo (extracted_by='AI') + + +Phase 7: 회의록 및 분석 결과 조회 +════════════════════════════════════════════════════════════════════════════════ + + Case 1: 통합 회의록 조회 + ───────────────────────────────────────────────────────────── + SELECT m.*, ms.*, ag.*, ai.* FROM minutes m + LEFT JOIN minutes_sections ms ON m.id = ms.minutes_id + LEFT JOIN agenda_sections ag ON m.id = ag.minutes_id + LEFT JOIN ai_summaries ai ON m.meeting_id = ai.meeting_id + WHERE m.meeting_id = 'meeting-001' + AND m.user_id IS NULL [V3] + ORDER BY ms.order + + + Case 2: 특정 사용자의 개인 회의록 조회 + ───────────────────────────────────────────────────────────── + SELECT m.*, ms.* FROM minutes m + LEFT JOIN minutes_sections ms ON m.id = ms.minutes_id + WHERE m.meeting_id = 'meeting-001' + AND m.user_id = 'user1@example.com' [V3] + ORDER BY ms.order + + → 개인이 작성한 회의록만 조회 + → AI 분석 결과(agenda_sections) 미포함 + + + Case 3: AI 분석 결과만 조회 + ───────────────────────────────────────────────────────────── + SELECT ag.* FROM agenda_sections ag + WHERE ag.meeting_id = 'meeting-001' + ORDER BY ag.agenda_number + + → 안건별 AI 요약 + → todos JSON 필드 포함 (V4) + + + Case 4: 추출된 Todo 조회 + ───────────────────────────────────────────────────────────── + SELECT * FROM todos + WHERE meeting_id = 'meeting-001' + AND extracted_by = 'AI' [V3] + ORDER BY priority DESC, due_date ASC + + 또는 agenda_sections의 JSON todos 필드 사용 + + +└──────────────────────────────────────────────────────────────────────────────┘ +``` + +--- + +## 2. 상태 전이 다이어그램 (State Transition) + +``` +┌─────────────────────────────────────────────────────────────────────────────┐ +│ meetings 테이블 상태 │ +└─────────────────────────────────────────────────────────────────────────────┘ + + [생성] + │ + ├─────────────────────────┐ + ▼ │ +SCHEDULED │ (시간 경과) + (scheduled_at 설정) │ + │ │ + │ start_meeting API │ + ▼ │ +IN_PROGRESS │ + (started_at 설정) │ + │ │ + │ end_meeting API [V3] │ + ▼ │ +COMPLETED │ + (ended_at 설정) [V3 추가] ├─────────────────────────┐ + │ │ │ + └─────────────────────────┘ │ + │ 회의록 최종화 │ + │ (finalize_minutes API) │ + ▼ │ + minutes: FINALIZED │ + (status='FINALIZED') │ + │ │ + │ (비동기 이벤트) │ + ▼ │ + AI 분석 완료 │ + agenda_sections 생성 │ + ai_summaries 생성 │ + todos 추출 │ + │ │ + └─────────────────────────┘ + + +┌─────────────────────────────────────────────────────────────────────────────┐ +│ minutes 테이블 상태 │ +└─────────────────────────────────────────────────────────────────────────────┘ + +CREATE DRAFT +(minutes 생성) ───────────► (사용자 작성 중) + │ + update_minutes API + │ + (섹션 추가/수정) + │ + │ + finalize_minutes API + │ + ▼ + FINALIZED + (AI 분석 대기 중) + │ + (비동기 처리 완료) + │ + ▼ + 분석 완료 (상태 유지) + agenda_sections 생성됨 + ai_summaries 생성됨 + + +┌─────────────────────────────────────────────────────────────────────────────┐ +│ minutes_sections 잠금 상태 │ +└─────────────────────────────────────────────────────────────────────────────┘ + +편집 가능 +(locked=FALSE) + │ + │ finalize_minutes + │ + ▼ +잠금됨 +(locked=TRUE, locked_by=user_id) + │ + └─────► 수정 불가 + verified=TRUE + + +┌─────────────────────────────────────────────────────────────────────────────┐ +│ todos 완료 상태 │ +└─────────────────────────────────────────────────────────────────────────────┘ + +PENDING +(생성됨) + │ + │ todo 완료 API + │ + ▼ +COMPLETED +(completed_at 설정) +``` + +--- + +## 3. 사용자별 회의록 데이터 구조 + +``` +┌──────────────────────────────────────────────────────────────────────────────┐ +│ 1개 회의 (meetings: meeting-001) +│ ├─ 참석자: user1, user2, user3 +└──────────────────────────────────────────────────────────────────────────────┘ + +회의 종료 → minutes 테이블에 여러 레코드 생성 + +┌─────────────────────────────────────────────────────────────────┐ +│ minutes 테이블 (3개 레코드 생성) │ +├─────────────────────────────────────────────────────────────────┤ +│ id │ meeting_id │ user_id │ status +├─────────────────────┼─────────────┼──────────────────────┼──────── +│ consol-minutes-001 │ meeting-001 │ NULL [V3] │ DRAFT +│ user1-minutes-001 │ meeting-001 │ user1@example.com │ DRAFT +│ user2-minutes-001 │ meeting-001 │ user2@example.com │ DRAFT +│ user3-minutes-001 │ meeting-001 │ user3@example.com │ DRAFT +└─────────────────────┴─────────────┴──────────────────────┴──────── + + ↓ (각각 minutes_sections 참조) + +┌─────────────────────────────────────────────────────────────────┐ +│ minutes_sections 테이블 (4그룹 × N개 섹션) │ +├─────────────────────────────────────────────────────────────────┤ +│ id │ minutes_id │ type │ title │ content +├────────┼────────────────────┼─────────────┼──────────┼───────── +│ sec-1 │ consol-minutes-001 │ DISCUSSION │ 안건1 │ "AI가..." +│ sec-2 │ consol-minutes-001 │ DECISION │ 결정1 │ "..." +│ │ │ │ │ +│ sec-3 │ user1-minutes-001 │ DISCUSSION │ 안건1 │ "사용자1..." +│ sec-4 │ user1-minutes-001 │ DISCUSSION │ 안건2 │ "..." +│ │ │ │ │ +│ sec-5 │ user2-minutes-001 │ DISCUSSION │ 안건1 │ "사용자2..." +│ sec-6 │ user2-minutes-001 │ DECISION │ 결정1 │ "..." +│ │ │ │ │ +│ sec-7 │ user3-minutes-001 │ DISCUSSION │ 안건1 │ "사용자3..." +└────────┴────────────────────┴─────────────┴──────────┴───────── + + +각 사용자가 독립적으로 작성: + - User1: consol-minutes-001의 sec-3, sec-4 편집 + - User2: user2-minutes-001의 sec-5, sec-6 편집 + - User3: user3-minutes-001의 sec-7 편집 + +AI 분석 (user_id=NULL인 것만): + +┌─────────────────────────────────────────────────────────────────┐ +│ agenda_sections 테이블 │ +├─────────────────────────────────────────────────────────────────┤ +│ id │ minutes_id │ meeting_id │ agenda_number +├────────┼────────────────────┼─────────────┼────────────────── +│ ag-1 │ consol-minutes-001 │ meeting-001 │ 1 +│ ag-2 │ consol-minutes-001 │ meeting-001 │ 2 +└────────┴────────────────────┴─────────────┴────────────────── + + → minutes_id를 통해 통합 회의록만 참조 + → user_id='user1@example.com'인 회의록은 참조하지 않음 +``` + +--- + +## 4. 인덱스 활용 쿼리 예시 + +```sql +-- 쿼리 1: 특정 회의의 통합 회의록 조회 (V3 인덱스 활용) +SELECT * FROM minutes +WHERE meeting_id = 'meeting-001' AND user_id IS NULL +ORDER BY created_at DESC; + └─► 인덱스: idx_minutes_meeting_user (meeting_id, user_id) + + +-- 쿼리 2: 특정 사용자의 회의록 조회 (복합 인덱스 활용) +SELECT * FROM minutes +WHERE meeting_id = 'meeting-001' AND user_id = 'user1@example.com' +ORDER BY created_at DESC; + └─► 인덱스: idx_minutes_meeting_user (meeting_id, user_id) + + +-- 쿼리 3: 안건별 AI 요약 조회 (V3 인덱스 활용) +SELECT * FROM agenda_sections +WHERE meeting_id = 'meeting-001' +ORDER BY agenda_number ASC; + └─► 인덱스: idx_sections_meeting (meeting_id) + + +-- 쿼리 4: 특정 안건의 세부 요약 (복합 인덱스 활용) +SELECT * FROM agenda_sections +WHERE meeting_id = 'meeting-001' AND agenda_number = 1; + └─► 인덱스: idx_sections_agenda (meeting_id, agenda_number) + + +-- 쿼리 5: AI 추출 Todo 조회 (V3 인덱스 활용) +SELECT * FROM todos +WHERE meeting_id = 'meeting-001' AND extracted_by = 'AI' +ORDER BY priority DESC, due_date ASC; + └─► 인덱스: idx_todos_extracted (extracted_by) + └─► 인덱스: idx_todos_meeting (meeting_id) + + +-- 쿼리 6: 특정 회의의 모든 데이터 조회 (JOIN) +SELECT + m.*, + ms.content, + ag.ai_summary_short, + ag.todos, + ai.keywords +FROM minutes m +LEFT JOIN minutes_sections ms ON m.id = ms.minutes_id +LEFT JOIN agenda_sections ag ON m.id = ag.minutes_id +LEFT JOIN ai_summaries ai ON m.meeting_id = ai.meeting_id +WHERE m.meeting_id = 'meeting-001' AND m.user_id IS NULL +ORDER BY ms.order ASC, ag.agenda_number ASC; + └─► 인덱스: idx_minutes_meeting_user (meeting_id, user_id) + └─► 인덱스: idx_sections_minutes (minutes_id) +``` + +--- + +## 5. 데이터 저장 크기 예상 + +``` +1개 회의 (참석자 5명) 데이터 크기: + +├─ meetings: ~500 bytes +├─ meeting_participants (5명): ~5 × 150 = 750 bytes +├─ minutes (6개: 1 통합 + 5 개인): ~6 × 400 = 2.4 KB +├─ minutes_sections (30개 섹션): ~30 × 2 KB = 60 KB +├─ agenda_sections (5개 안건): ~5 × 4 KB = 20 KB +├─ ai_summaries: ~10 KB +└─ todos (8개): ~8 × 800 bytes = 6.4 KB + +Total: ~100 KB/회의 + +1년 (250개 회의) 예상: + └─► 25 MB + 인덱스 ~5 MB = ~30 MB + + +JSON 필드 데이터 크기: +├─ agenda_sections.decisions: ~200 bytes/건 +├─ agenda_sections.opinions: ~300 bytes/건 +├─ agenda_sections.todos: ~500 bytes/건 [V4] +├─ ai_summaries.result: ~5-10 KB/건 +└─ ai_summaries.statistics: ~200 bytes/건 +``` diff --git a/claude/database-diagram.puml b/claude/database-diagram.puml new file mode 100644 index 0000000..c7e5496 --- /dev/null +++ b/claude/database-diagram.puml @@ -0,0 +1,130 @@ +@startuml Meeting Service Database Schema +!theme mono + +'=== Core Tables === +entity "meetings" { + * **meeting_id : VARCHAR(50) + -- + title : VARCHAR(200) NOT NULL + purpose : VARCHAR(500) + description : TEXT + scheduled_at : TIMESTAMP NOT NULL + started_at : TIMESTAMP + ended_at : TIMESTAMP [V3] + status : VARCHAR(20) NOT NULL + organizer_id : VARCHAR(50) NOT NULL + created_at : TIMESTAMP + updated_at : TIMESTAMP + template_id : VARCHAR(50) +} + +entity "meeting_participants" { + * **meeting_id : VARCHAR(50) [FK] + * **user_id : VARCHAR(100) + -- + invitation_status : VARCHAR(20) + attended : BOOLEAN + created_at : TIMESTAMP + updated_at : TIMESTAMP +} + +entity "minutes" { + * **id : VARCHAR(50) + -- + meeting_id : VARCHAR(50) [FK] NOT NULL + user_id : VARCHAR(100) [V3] + title : VARCHAR(200) NOT NULL + status : VARCHAR(20) NOT NULL + version : INT NOT NULL + created_by : VARCHAR(50) NOT NULL + finalized_by : VARCHAR(50) + finalized_at : TIMESTAMP + created_at : TIMESTAMP + updated_at : TIMESTAMP +} + +entity "minutes_sections" { + * **id : VARCHAR(50) + -- + minutes_id : VARCHAR(50) [FK] NOT NULL + type : VARCHAR(50) NOT NULL + title : VARCHAR(200) NOT NULL + **content : TEXT + order : INT + verified : BOOLEAN + locked : BOOLEAN + locked_by : VARCHAR(50) + created_at : TIMESTAMP + updated_at : TIMESTAMP +} + +'=== V3 New Tables === +entity "agenda_sections" { + * **id : VARCHAR(36) + -- + minutes_id : VARCHAR(36) [FK] NOT NULL + meeting_id : VARCHAR(50) [FK] NOT NULL + agenda_number : INT NOT NULL + agenda_title : VARCHAR(200) NOT NULL + ai_summary_short : TEXT + discussions : TEXT + decisions : JSON + pending_items : JSON + opinions : JSON + **todos : JSON [V4] + created_at : TIMESTAMP + updated_at : TIMESTAMP +} + +entity "ai_summaries" { + * **id : VARCHAR(36) + -- + meeting_id : VARCHAR(50) [FK] NOT NULL + summary_type : VARCHAR(50) NOT NULL + source_minutes_ids : JSON NOT NULL + result : JSON NOT NULL + processing_time_ms : INT + model_version : VARCHAR(50) + keywords : JSON + statistics : JSON + created_at : TIMESTAMP +} + +entity "todos" { + * **todo_id : VARCHAR(50) + -- + meeting_id : VARCHAR(50) [FK] NOT NULL + minutes_id : VARCHAR(50) [FK] + title : VARCHAR(200) NOT NULL + description : TEXT + assignee_id : VARCHAR(50) NOT NULL + due_date : DATE + status : VARCHAR(20) NOT NULL + priority : VARCHAR(20) + extracted_by : VARCHAR(50) [V3] + section_reference : VARCHAR(200) [V3] + extraction_confidence : DECIMAL(3,2) [V3] + completed_at : TIMESTAMP + created_at : TIMESTAMP + updated_at : TIMESTAMP +} + +'=== Relationships === +meetings ||--o{ meeting_participants : "1:N [V2]" +meetings ||--o{ minutes : "1:N" +meetings ||--o{ agenda_sections : "1:N [V3]" +meetings ||--o{ ai_summaries : "1:N [V3]" +meetings ||--o{ todos : "1:N" +minutes ||--o{ minutes_sections : "1:N" +minutes ||--o{ agenda_sections : "1:N [V3]" + +'=== Legend === +legend right + V2 = Migration 2 (2025-10-27) + V3 = Migration 3 (2025-10-28) + V4 = Migration 4 (2025-10-28) + [FK] = Foreign Key + **bold** = Important fields +end legend + +@enduml diff --git a/claude/database-schema-analysis.md b/claude/database-schema-analysis.md new file mode 100644 index 0000000..4b31df2 --- /dev/null +++ b/claude/database-schema-analysis.md @@ -0,0 +1,675 @@ +# Meeting Service 데이터베이스 스키마 전체 분석 + +## 1. 마이그레이션 파일 현황 + +### 마이그레이션 체인 +``` +V1 (초기) → V2 (회의 참석자) → V3 (회의종료) → V4 (todos) +``` + +### 각 마이그레이션 내용 +- **V1**: 초기 스키마 (meetings, minutes, minutes_sections 등 - JPA로 자동 생성) +- **V2**: `meeting_participants` 테이블 분리 (2025-10-27) +- **V3**: 회의종료 기능 지원 (2025-10-28) - **주요 변경** +- **V4**: `agenda_sections` 테이블에 `todos` 컬럼 추가 (2025-10-28) + +--- + +## 2. 핵심 테이블 구조 분석 + +### 2.1 meetings 테이블 +**용도**: 회의 기본 정보 저장 + +| 컬럼명 | 타입 | 설명 | 용도 | +|--------|------|------|------| +| meeting_id | VARCHAR(50) | PK | 회의 고유 식별자 | +| title | VARCHAR(200) | NOT NULL | 회의 제목 | +| purpose | VARCHAR(500) | | 회의 목적 | +| description | TEXT | | 상세 설명 | +| scheduled_at | TIMESTAMP | NOT NULL | 예정된 시간 | +| started_at | TIMESTAMP | | 실제 시작 시간 | +| ended_at | TIMESTAMP | | **V3 추가**: 실제 종료 시간 | +| status | VARCHAR(20) | NOT NULL | 상태: SCHEDULED, IN_PROGRESS, COMPLETED | +| organizer_id | VARCHAR(50) | NOT NULL | 회의 주최자 | +| created_at | TIMESTAMP | | 생성 시간 | +| updated_at | TIMESTAMP | | 수정 시간 | + +**관계**: +- 1:N with `meeting_participants` (V2에서 분리) +- 1:N with `minutes` + +--- + +### 2.2 minutes 테이블 +**용도**: 회의록 기본 정보 + 사용자별 회의록 구분 + +| 컬럼명 | 타입 | 설명 | 용도 | +|--------|------|------|------| +| id/minutes_id | VARCHAR(50) | PK | 회의록 고유 식별자 | +| meeting_id | VARCHAR(50) | FK | 해당 회의 ID | +| user_id | VARCHAR(100) | **V3 추가** | NULL: AI 통합 회의록 / NOT NULL: 참석자별 회의록 | +| title | VARCHAR(200) | NOT NULL | 회의록 제목 | +| status | VARCHAR(20) | NOT NULL | DRAFT, FINALIZED | +| version | INT | NOT NULL | 버전 관리 | +| created_by | VARCHAR(50) | NOT NULL | 작성자 | +| finalized_by | VARCHAR(50) | | 확정자 | +| finalized_at | TIMESTAMP | | 확정 시간 | +| created_at | TIMESTAMP | | 생성 시간 | +| updated_at | TIMESTAMP | | 수정 시간 | + +**중요**: `minutes` 테이블에는 `content` 컬럼이 **없음** +- 실제 회의록 내용은 `minutes_sections`의 `content`에 저장됨 +- minutes는 메타데이터만 저장 + +**인덱스 (V3)**: `idx_minutes_meeting_user` on (meeting_id, user_id) + +**관계**: +- N:1 with `meetings` +- 1:N with `minutes_sections` +- 1:N with `agenda_sections` (V3 추가) + +--- + +### 2.3 minutes_sections 테이블 +**용도**: 회의록 섹션별 상세 내용 + +| 컬럼명 | 타입 | 설명 | +|--------|------|------| +| id | VARCHAR(50) | PK | +| minutes_id | VARCHAR(50) | FK to minutes | +| type | VARCHAR(50) | AGENDA, DISCUSSION, DECISION, ACTION_ITEM | +| title | VARCHAR(200) | 섹션 제목 | +| **content** | TEXT | **섹션 상세 내용 저장** | +| order | INT | 섹션 순서 | +| verified | BOOLEAN | 검증 완료 여부 | +| locked | BOOLEAN | 잠금 여부 | +| locked_by | VARCHAR(50) | 잠금 사용자 | + +**중요 사항**: +- 회의록 실제 내용은 여기에 저장됨 +- `minutes`와 N:1 관계 (1개 회의록에 다중 섹션) +- 사용자별 회의록도 각각 섹션을 가짐 + +--- + +### 2.4 agenda_sections 테이블 (V3 신규) +**용도**: 안건별 AI 요약 결과 저장 (구조화된 형식) + +| 컬럼명 | 타입 | 설명 | 포함 데이터 | +|--------|------|------|-----------| +| id | VARCHAR(36) | PK | UUID | +| minutes_id | VARCHAR(36) | FK | 통합 회의록 참조 | +| meeting_id | VARCHAR(50) | FK | 회의 ID | +| agenda_number | INT | | 안건 번호 (1, 2, 3...) | +| agenda_title | VARCHAR(200) | | 안건 제목 | +| ai_summary_short | TEXT | | 짧은 요약 (1줄, 20자 이내) | +| discussions | TEXT | | 논의 사항 (3-5문장) | +| decisions | JSON | | 결정 사항 배열 | +| pending_items | JSON | | 보류 사항 배열 | +| opinions | JSON | | 참석자별 의견: [{speaker, opinion}] | +| **todos** | JSON | **V4 추가** | 추출된 Todo: [{title, assignee, dueDate, description, priority}] | + +**V4 추가 구조** (todos JSON): +```json +[ + { + "title": "시장 조사 보고서 작성", + "assignee": "김민준", + "dueDate": "2025-02-15", + "description": "20-30대 타겟 시장 조사", + "priority": "HIGH" + } +] +``` + +**인덱스**: +- `idx_sections_meeting` on meeting_id +- `idx_sections_agenda` on (meeting_id, agenda_number) +- `idx_sections_minutes` on minutes_id + +**관계**: +- N:1 with `minutes` (통합 회의록만 참조) +- N:1 with `meetings` + +--- + +### 2.5 minutes_section vs agenda_sections 차이점 + +| 특성 | minutes_sections | agenda_sections | +|------|------------------|-----------------| +| **용도** | 회의록 작성용 | AI 요약 결과 저장용 | +| **구조** | 순차적 섹션 (type: AGENDA, DISCUSSION, DECISION) | 안건별 구조화된 데이터 | +| **내용 저장** | content (TEXT) | 구조화된 필드 + JSON | +| **소유 관계** | 모든 회의록 (사용자별 포함) | 통합 회의록만 (user_id=NULL) | +| **목적** | 사용자 작성 | AI 자동 생성 | +| **JSON 필드** | 없음 | decisions, pending_items, opinions, todos | + +**생성 흐름**: +``` +회의 종료 → 통합 회의록 (minutes, user_id=NULL) + → minutes_sections 생성 (사용자가 내용 작성) + → AI 분석 → agenda_sections 생성 (AI 요약 결과 저장) + +동시에: + → 참석자별 회의록 (minutes, user_id NOT NULL) + → 참석자별 minutes_sections 생성 +``` + +--- + +### 2.6 ai_summaries 테이블 (V3 신규) +**용도**: AI 요약 결과 캐싱 + +| 컬럼명 | 타입 | 설명 | +|--------|------|------| +| id | VARCHAR(36) | PK | +| meeting_id | VARCHAR(50) | FK | +| summary_type | VARCHAR(50) | CONSOLIDATED (통합 요약) / TODO_EXTRACTION (Todo 추출) | +| source_minutes_ids | JSON | 통합에 사용된 회의록 ID 배열 | +| result | JSON | **AI 응답 전체 결과** | +| processing_time_ms | INT | AI 처리 시간 | +| model_version | VARCHAR(50) | 사용 모델 (claude-3.5-sonnet) | +| keywords | JSON | 주요 키워드 배열 | +| statistics | JSON | 통계 (참석자 수, 안건 수 등) | + +--- + +### 2.7 todos 테이블 +**용도**: Todo 아이템 저장 + +| 컬럼명 | 타입 | 설명 | +|--------|------|------| +| todo_id | VARCHAR(50) | PK | +| minutes_id | VARCHAR(50) | FK | 관련 회의록 | +| meeting_id | VARCHAR(50) | FK | 회의 ID | +| title | VARCHAR(200) | 제목 | +| description | TEXT | 상세 설명 | +| assignee_id | VARCHAR(50) | 담당자 | +| due_date | DATE | 마감일 | +| status | VARCHAR(20) | PENDING, COMPLETED | +| priority | VARCHAR(20) | HIGH, MEDIUM, LOW | +| completed_at | TIMESTAMP | 완료 시간 | + +**V3에서 추가된 컬럼**: +```sql +extracted_by VARCHAR(50) -- AI 또는 MANUAL +section_reference VARCHAR(200) -- 관련 회의록 섹션 참조 +extraction_confidence DECIMAL(3,2) -- AI 신뢰도 (0.00~1.00) +``` + +--- + +### 2.8 meeting_participants 테이블 (V2 신규) +**용도**: 회의 참석자 정보 분리 + +| 컬럼명 | 타입 | 설명 | +|--------|------|------| +| meeting_id | VARCHAR(50) | PK1, FK | +| user_id | VARCHAR(100) | PK2 | +| invitation_status | VARCHAR(20) | PENDING, ACCEPTED, DECLINED | +| attended | BOOLEAN | 참석 여부 | +| created_at | TIMESTAMP | | +| updated_at | TIMESTAMP | | + +**변경 배경 (V2)**: +- 이전: meetings.participants (CSV 문자열) +- 현재: meeting_participants (별도 테이블, 정규화) + +--- + +## 3. 회의록 작성 플로우에서의 테이블 사용 + +### 3.1 회의 시작 (StartMeeting) +``` +meetings 테이블 UPDATE + └─ status: SCHEDULED → IN_PROGRESS + └─ started_at 기록 +``` + +### 3.2 회의 종료 (EndMeeting) +``` +meetings 테이블 UPDATE + ├─ status: IN_PROGRESS → COMPLETED + └─ ended_at 기록 (V3 신규) + +↓ + +minutes 테이블 생성 (AI 통합 회의록) + ├─ user_id = NULL + ├─ status = DRAFT + └─ 각 참석자별 회의록도 동시 생성 + └─ user_id = 참석자ID + +↓ + +minutes_sections 테이블 초기 생성 + ├─ 통합 회의록용 섹션 + └─ 각 참석자별 섹션 +``` + +### 3.3 회의록 작성 (CreateMinutes / UpdateMinutes) +``` +minutes 테이블 UPDATE + ├─ title 작성 + └─ status 유지 (DRAFT) + +↓ + +minutes_sections 테이블 INSERT/UPDATE + ├─ type: AGENDA, DISCUSSION, DECISION 등 + ├─ title: 섹션 제목 + ├─ content: 실제 회의록 내용 ← **여기에 사용자가 입력한 내용 저장** + └─ order: 순서 + +사용자가 작성한 내용 저장 경로: + minutes_sections.content (TEXT 컬럼) +``` + +### 3.4 AI 분석 (FinializeMinutes + AI Processing) +``` +minutes 테이블 UPDATE + ├─ status: DRAFT → FINALIZED + └─ finalized_at 기록 + +↓ + +agenda_sections 테이블 INSERT + ├─ minutesId = 통합 회의록 ID (user_id=NULL) + ├─ AI 요약: aiSummaryShort, discussions + ├─ 구조화된 데이터: decisions, pendingItems, opinions (JSON) + └─ todos (V4): AI 추출 Todo (JSON) + +↓ + +ai_summaries 테이블 INSERT + ├─ summary_type: CONSOLIDATED + ├─ result: AI 응답 전체 결과 + └─ keywords, statistics + +↓ + +todos 테이블 INSERT (선택) + ├─ 간단한 Todo는 agenda_sections.todos에만 저장 + └─ 상세 관리 필요한 경우 별도 테이블 저장 +``` + +--- + +## 4. 사용자별 회의록 저장 구조 + +### 4.1 회의 종료 시 자동 생성 + +``` +1개의 회의 → 여러 회의록 + ├─ AI 통합 회의록 (minutes.user_id = NULL) + │ ├─ minutes_sections (AI/시스템이 생성) + │ └─ agenda_sections (AI 분석 결과) + │ + └─ 각 참석자별 회의록 (minutes.user_id = 참석자ID) + ├─ User1의 회의록 (minutes.user_id = 'user1@example.com') + │ └─ minutes_sections (User1이 작성) + │ + ├─ User2의 회의록 (minutes.user_id = 'user2@example.com') + │ └─ minutes_sections (User2이 작성) + │ + └─ ... +``` + +### 4.2 minutes 테이블 쿼리 예시 + +```sql +-- 특정 회의의 AI 통합 회의록 +SELECT * FROM minutes +WHERE meeting_id = 'meeting-001' AND user_id IS NULL; + +-- 특정 회의의 참석자별 회의록 +SELECT * FROM minutes +WHERE meeting_id = 'meeting-001' AND user_id IS NOT NULL; + +-- 특정 사용자의 회의록 +SELECT * FROM minutes +WHERE user_id = 'user1@example.com'; + +-- 참석자별로 회의록 조회 (복합 인덱스 활용) +SELECT * FROM minutes +WHERE meeting_id = 'meeting-001' AND user_id = 'user1@example.com'; +``` + +--- + +## 5. V3 마이그레이션의 주요 변경사항 + +### 5.1 minutes 테이블 확장 +```sql +ALTER TABLE minutes ADD COLUMN IF NOT EXISTS user_id VARCHAR(100); +CREATE INDEX IF NOT EXISTS idx_minutes_meeting_user ON minutes(meeting_id, user_id); +``` + +**영향**: +- 기존 회의록: `user_id = NULL` (AI 통합 회의록) +- 새 회의록: `user_id = 참석자ID` (참석자별) +- 쿼리 성능: 복합 인덱스로 빠른 검색 + +### 5.2 agenda_sections 테이블 신규 생성 +- AI 요약을 구조화된 형식으로 저장 +- JSON 필드로 결정사항, 보류사항, 의견, Todo 저장 +- minutes_id로 통합 회의록과 연결 + +### 5.3 ai_summaries 테이블 신규 생성 +- AI 처리 결과 캐싱 +- 처리 시간, 모델 버전 기록 +- 재처리 필요 시 참조 가능 + +### 5.4 todos 테이블 확장 +```sql +ALTER TABLE todos ADD COLUMN extracted_by VARCHAR(50) DEFAULT 'AI'; +ALTER TABLE todos ADD COLUMN section_reference VARCHAR(200); +ALTER TABLE todos ADD COLUMN extraction_confidence DECIMAL(3,2) DEFAULT 0.00; +``` + +**목적**: +- AI 자동 추출 vs 수동 작성 구분 +- Todo의 출처 추적 +- AI 신뢰도 관리 + +--- + +## 6. V4 마이그레이션의 변경사항 + +### 6.1 agenda_sections 테이블에 todos 컬럼 추가 +```sql +ALTER TABLE agenda_sections ADD COLUMN IF NOT EXISTS todos JSON; +``` + +**구조**: +```json +{ + "title": "시장 조사 보고서 작성", + "assignee": "김민준", + "dueDate": "2025-02-15", + "description": "20-30대 타겟 시장 조사", + "priority": "HIGH" +} +``` + +**저장 경로**: +- **안건별 요약의 Todo**: `agenda_sections.todos` (JSON) +- **개별 Todo 관리**: `todos` 테이블 (필요시) + +--- + +## 7. 데이터 정규화 현황 + +### 7.1 정규화 수행 (V2) +``` +meetings (이전): + participants: "user1@example.com,user2@example.com" + +↓ 정규화 (V2 마이그레이션) + +meetings_participants (별도 테이블): + [meeting_id, user_id] (복합 PK) + invitation_status + attended +``` + +### 7.2 JSON 필드 사용 (V3, V4) +- `decisions`, `pending_items`, `opinions`, `todos` (agenda_sections) +- `keywords`, `statistics` (ai_summaries) +- `source_minutes_ids` (ai_summaries) + +**사용 이유**: +- 변동적인 구조 데이터 +- AI 응답의 유연한 저장 +- 쿼리 패턴이 검색보다 전체 조회 + +--- + +## 8. 핵심 질문 답변 + +### Q1: minutes 테이블에 content 필드가 있는가? +**A**: **없음**. 회의록 실제 내용은 `minutes_sections.content`에 저장됨. + +### Q2: minutes_section과 agenda_sections의 차이점? +| 항목 | minutes_sections | agenda_sections | +|------|-----------------|-----------------| +| 목적 | 사용자 작성 | AI 요약 | +| 모든 회의록 | O | X (통합만) | +| 구조 | 순차적 | 안건별 | +| 내용 저장 | content (TEXT) | JSON | + +### Q3: 사용자별 회의록을 저장할 적절한 구조는? +**A**: +- `minutes` 테이블: `user_id` 컬럼으로 구분 +- `minutes_sections`: 각 회의록의 섹션 +- 인덱스: `idx_minutes_meeting_user` (meeting_id, user_id) + +### Q4: V3, V4 주요 변경사항은? +- **V3**: user_id 추가, agenda_sections 신규, ai_summaries 신규, todos 확장 +- **V4**: agenda_sections.todos JSON 필드 추가 + +--- + +## 9. 데이터베이스 구조도 (PlantUML) + +```plantuml +@startuml +!theme mono + +entity "meetings" as meetings { + * meeting_id: VARCHAR(50) + -- + title: VARCHAR(200) + status: VARCHAR(20) + organizer_id: VARCHAR(50) + started_at: TIMESTAMP + ended_at: TIMESTAMP [V3] + created_at: TIMESTAMP + updated_at: TIMESTAMP +} + +entity "meeting_participants" as participants { + * meeting_id: VARCHAR(50) [FK] + * user_id: VARCHAR(100) + -- + invitation_status: VARCHAR(20) + attended: BOOLEAN +} + +entity "minutes" as minutes { + * id: VARCHAR(50) + -- + meeting_id: VARCHAR(50) [FK] + user_id: VARCHAR(100) [V3] + title: VARCHAR(200) + status: VARCHAR(20) + created_by: VARCHAR(50) + finalized_at: TIMESTAMP +} + +entity "minutes_sections" as sections { + * id: VARCHAR(50) + -- + minutes_id: VARCHAR(50) [FK] + type: VARCHAR(50) + title: VARCHAR(200) + content: TEXT + locked: BOOLEAN +} + +entity "agenda_sections" as agenda { + * id: VARCHAR(36) + -- + minutes_id: VARCHAR(36) [FK, 통합회의록만] + meeting_id: VARCHAR(50) [FK] + agenda_number: INT + agenda_title: VARCHAR(200) + ai_summary_short: TEXT + discussions: TEXT + decisions: JSON + opinions: JSON + todos: JSON [V4] +} + +entity "ai_summaries" as summaries { + * id: VARCHAR(36) + -- + meeting_id: VARCHAR(50) [FK] + summary_type: VARCHAR(50) + result: JSON + keywords: JSON + statistics: JSON +} + +entity "todos" as todos { + * todo_id: VARCHAR(50) + -- + meeting_id: VARCHAR(50) [FK] + minutes_id: VARCHAR(50) [FK] + title: VARCHAR(200) + assignee_id: VARCHAR(50) + status: VARCHAR(20) + extracted_by: VARCHAR(50) [V3] +} + +meetings ||--o{ participants: "1:N" +meetings ||--o{ minutes: "1:N" +meetings ||--o{ agenda: "1:N" +meetings ||--o{ todos: "1:N" +minutes ||--o{ sections: "1:N" +minutes ||--o{ agenda: "1:N" +meetings ||--o{ summaries: "1:N" + +@enduml +``` + +--- + +## 10. 회의록 작성 전체 플로우 + +``` +┌─────────────────────────────────────────────────────┐ +│ 1. 회의 시작 (StartMeeting) │ +│ ├─ meetings.status = IN_PROGRESS │ +│ └─ meetings.started_at 기록 │ +└─────────────────┬───────────────────────────────────┘ + │ +┌─────────────────▼───────────────────────────────────┐ +│ 2. 회의 진행 중 (회의록 작성) │ +│ ├─ CreateMinutes: minutes 생성 (user_id=NULL 통합) │ +│ ├─ CreateMinutes: 참석자별 minutes 생성 │ +│ ├─ UpdateMinutes: minutes_sections 작성 │ +│ │ └─ content에 회의 내용 저장 │ +│ └─ SaveMinutes: draft 상태 유지 │ +└─────────────────┬───────────────────────────────────┘ + │ +┌─────────────────▼───────────────────────────────────┐ +│ 3. 회의 종료 (EndMeeting) │ +│ ├─ meetings.status = COMPLETED │ +│ ├─ meetings.ended_at = NOW() [V3] │ +│ └─ 회의 기본 정보 확정 │ +└─────────────────┬───────────────────────────────────┘ + │ +┌─────────────────▼───────────────────────────────────┐ +│ 4. 회의록 최종화 (FinalizeMinutes) │ +│ ├─ minutes.status = FINALIZED │ +│ ├─ minutes.finalized_by = 확정자 │ +│ ├─ minutes.finalized_at = NOW() │ +│ └─ minutes_sections 내용 확정 (locked) │ +└─────────────────┬───────────────────────────────────┘ + │ +┌─────────────────▼───────────────────────────────────┐ +│ 5. AI 분석 처리 (MinutesAnalysisEventConsumer) │ +│ ├─ 통합 회의록 분석 (user_id=NULL) │ +│ │ │ +│ ├─ agenda_sections INSERT [V3] │ +│ │ ├─ minutes_id = 통합 회의록 ID │ +│ │ ├─ ai_summary_short, discussions │ +│ │ ├─ decisions, pending_items, opinions (JSON) │ +│ │ └─ todos (JSON) [V4] │ +│ │ │ +│ ├─ ai_summaries INSERT [V3] │ +│ │ ├─ summary_type = CONSOLIDATED │ +│ │ ├─ result = AI 응답 전체 │ +│ │ └─ keywords, statistics │ +│ │ │ +│ └─ todos TABLE INSERT (선택) │ +│ ├─ extracted_by = 'AI' [V3] │ +│ └─ extraction_confidence [V3] │ +└─────────────────┬───────────────────────────────────┘ + │ +┌─────────────────▼───────────────────────────────────┐ +│ 6. 회의록 조회 │ +│ ├─ 통합 회의록 조회 │ +│ │ └─ minutes + minutes_sections + agenda_sections │ +│ ├─ 참석자별 회의록 조회 │ +│ │ └─ minutes (user_id=참석자) + minutes_sections │ +│ └─ Todo 조회 │ +│ └─ agenda_sections.todos 또는 todos 테이블 │ +└─────────────────────────────────────────────────────┘ +``` + +--- + +## 11. 성능 최적화 포인트 + +### 11.1 인덱스 현황 +``` +meetings: + - PK: meeting_id + +minutes: + - PK: id + - idx_minutes_meeting_user (meeting_id, user_id) [V3] ← 핵심 + +minutes_sections: + - PK: id + - FK: minutes_id + +agenda_sections: [V3] + - PK: id + - idx_sections_meeting (meeting_id) + - idx_sections_agenda (meeting_id, agenda_number) + - idx_sections_minutes (minutes_id) + +ai_summaries: [V3] + - PK: id + - idx_summaries_meeting (meeting_id) + - idx_summaries_type (meeting_id, summary_type) + - idx_summaries_created (created_at) + +todos: + - PK: todo_id + - idx_todos_extracted (extracted_by) [V3] + - idx_todos_meeting (meeting_id) [V3] + +meeting_participants: [V2] + - PK: (meeting_id, user_id) + - idx_user_id (user_id) + - idx_invitation_status (invitation_status) +``` + +### 11.2 추천 추가 인덱스 +```sql +-- 빠른 조회를 위한 인덱스 +CREATE INDEX idx_minutes_status ON minutes(status, created_at DESC); +CREATE INDEX idx_agenda_meeting_created ON agenda_sections(meeting_id, created_at DESC); +CREATE INDEX idx_todos_meeting_assignee ON todos(meeting_id, assignee_id); +``` + +--- + +## 12. 결론 + +### 핵심 설계 원칙 +1. **참석자별 회의록**: minutes.user_id로 구분 (NULL=AI 통합, NOT NULL=개인) +2. **내용 저장**: minutes_sections.content에 사용자가 작성한 내용 저장 +3. **구조화된 요약**: agenda_sections에 AI 요약을 JSON으로 저장 +4. **추적 가능성**: extracted_by, section_reference로 Todo 출처 추적 +5. **정규화**: V2에서 meeting_participants로 정규화 완료 + +### 주의사항 +- `minutes` 테이블 자체는 메타데이터만 저장 (title, status 등) +- 실제 회의 내용: `minutes_sections.content` +- AI 요약 결과: `agenda_sections` (구조화됨) +- Todo는 두 곳에 저장 가능: agenda_sections.todos (JSON) / todos 테이블 diff --git a/logs/ai-python-final.log b/logs/ai-python-final.log new file mode 100644 index 0000000..be1c618 --- /dev/null +++ b/logs/ai-python-final.log @@ -0,0 +1,9657 @@ +INFO: Will watch for changes in these directories: ['/Users/jominseo/HGZero/ai-python'] +INFO: Uvicorn running on http://0.0.0.0:8086 (Press CTRL+C to quit) +INFO: Started reloader process [5342] using WatchFiles +INFO: Started server process [5345] +INFO: Waiting for application startup. +2025-10-27 16:57:19,761 - main - INFO - ============================================================ +2025-10-27 16:57:19,761 - main - INFO - AI Service (Python) 시작 - Port: 8086 +2025-10-27 16:57:19,761 - main - INFO - Claude Model: claude-3-5-sonnet-20241022 +2025-10-27 16:57:19,761 - main - INFO - Redis: 20.249.177.114:6379 +2025-10-27 16:57:19,761 - main - INFO - ============================================================ +2025-10-27 16:57:19,761 - main - INFO - Event Hub 리스너 백그라운드 시작... +2025-10-27 16:57:19,761 - app.services.eventhub_service - INFO - Event Hub 리스너 시작 +INFO: Application startup complete. +2025-10-27 16:57:19,865 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 16:57:19,865 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' is being started +2025-10-27 16:57:19,962 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:57:19,997 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:19,997 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:19,997 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:19,997 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:19,998 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:19,998 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:19,998 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:19,998 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,020 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:20,070 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:20,121 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:20,172 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,172 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:20,224 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,224 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,224 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:57:20,430 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,430 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:20,430 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,430 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,438 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,438 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:20,439 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,439 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,447 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,447 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:20,449 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 16:57:20,449 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 16:57:20,506 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:57:20,525 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:20,525 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:20,526 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:20,526 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:20,526 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,526 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:20,526 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,526 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,537 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:20,588 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:20,645 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:20,696 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,697 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:20,748 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:20,749 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:20,749 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:57:20,956 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:21,467 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 16:57:21,468 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:21,468 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 16:57:21,519 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:21,570 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:21,570 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:21,570 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:21,570 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:21,570 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:21,571 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:21,571 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:21,571 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:21,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:21,571 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:21,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:21,571 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:21,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:21,616 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:57:21\nReference:18d7347e-507b-48bf-9d5a-3244deb066b0\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T07:57:21 TrackingId:2db4ea4d3b884c3bb8a04276ccde8de5_G19, SystemTracker:gateway5, Timestamp:2025-10-27T07:57:21"). +2025-10-27 16:57:21,616 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:57:21 +Reference:18d7347e-507b-48bf-9d5a-3244deb066b0 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T07:57:21 TrackingId:2db4ea4d3b884c3bb8a04276ccde8de5_G19, SystemTracker:gateway5, Timestamp:2025-10-27T07:57:21 +2025-10-27 16:57:21,617 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +INFO: 127.0.0.1:64808 - "OPTIONS /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +INFO: 127.0.0.1:64909 - "GET / HTTP/1.1" 200 OK +2025-10-27 16:57:55,851 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 16:57:55,851 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 16:57:55,917 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:57:55,937 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:55,937 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:55,937 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:55,937 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:55,938 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:55,938 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:55,938 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:55,938 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:55,948 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:56,000 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:56,052 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:56,104 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:56,105 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:56,156 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:56,156 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:56,156 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:57:56,363 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:56,868 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 16:57:56,868 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:56,868 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 16:57:56,920 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:56,972 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:56,973 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:57,024 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:57:56\nReference:3d8c3428-877a-493d-aba6-8a544ee55efd\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T07:57:56 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T07:57:56"). +2025-10-27 16:57:57,025 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:57:56 +Reference:3d8c3428-877a-493d-aba6-8a544ee55efd +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T07:57:56 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T07:57:56 +2025-10-27 16:57:57,025 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 16:58:30,594 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 16:58:30,595 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 16:58:30,655 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:58:30,674 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:58:30,674 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:58:30,674 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:58:30,674 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:58:30,674 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:30,674 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:58:30,674 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:30,675 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:58:30,684 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:58:30,735 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:58:30,787 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:58:30,839 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:30,839 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:58:30,891 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:30,891 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:58:30,891 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:58:31,098 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:31,601 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 16:58:31,602 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:31,602 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 16:58:31,653 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:58:31,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:58:31,710 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:58:31\nReference:d4ec4363-ab1f-455c-ab4e-e6e83ec29b5c\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T07:58:31 TrackingId:0adf4d97a2f3429dafceda129ef0ec61_G23, SystemTracker:gateway5, Timestamp:2025-10-27T07:58:31"). +2025-10-27 16:58:31,710 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:58:31 +Reference:d4ec4363-ab1f-455c-ab4e-e6e83ec29b5c +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T07:58:31 TrackingId:0adf4d97a2f3429dafceda129ef0ec61_G23, SystemTracker:gateway5, Timestamp:2025-10-27T07:58:31 +2025-10-27 16:58:31,710 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 16:59:01,646 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:65229 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 16:59:01,725 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 16:59:04,202 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 16:59:04,203 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 16:59:04,256 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:59:04,272 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:04,272 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:04,272 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:04,273 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:59:04,273 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:04,273 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:59:04,273 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:04,273 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:59:04,280 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:04,330 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:04,382 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:59:04,434 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:04,434 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:59:04,486 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:04,486 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:59:04,486 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:59:04,692 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:05,081 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 16:59:05,081 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:05,081 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 16:59:05,131 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:05,181 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:05,181 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:59:05,181 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:05,181 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:59:05,182 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:59:05,182 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:05,182 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:05,182 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:59:05,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:05,182 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:59:05,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:05,182 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:59:05,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:05,225 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:59:04\nReference:6cf37a49-4a6d-4945-90a7-18042367dfcb\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T07:59:04 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T07:59:04"). +2025-10-27 16:59:05,225 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:59:04 +Reference:6cf37a49-4a6d-4945-90a7-18042367dfcb +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T07:59:04 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T07:59:04 +2025-10-27 16:59:05,225 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 16:59:16,009 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 16:59:16,029 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:65322 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 16:59:16,089 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 16:59:35,319 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 16:59:35,320 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 16:59:35,387 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:59:35,403 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:35,403 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:35,404 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:35,404 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:59:35,404 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:35,404 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:59:35,404 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:35,404 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:59:35,415 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:35,467 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:35,518 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:59:35,570 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:35,570 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:59:35,622 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:35,622 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:59:35,623 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:59:35,829 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:36,335 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 16:59:36,335 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:36,335 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 16:59:36,387 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:36,439 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:36,439 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:59:36,439 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:36,439 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:59:36,439 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:59:36,439 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:36,440 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:59:36,440 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:59:36,440 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:36,440 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:59:36,440 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:36,440 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:59:36,440 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:59:36,491 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:59:35\nReference:88fe7e9a-af0c-45a9-8df5-fdf12ca7871c\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T07:59:36 TrackingId:88b921350b3b4ad99db87dda745072ed_G11, SystemTracker:gateway5, Timestamp:2025-10-27T07:59:36"). +2025-10-27 16:59:36,492 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:59:35 +Reference:88fe7e9a-af0c-45a9-8df5-fdf12ca7871c +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T07:59:36 TrackingId:88b921350b3b4ad99db87dda745072ed_G11, SystemTracker:gateway5, Timestamp:2025-10-27T07:59:36 +2025-10-27 16:59:36,492 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:00:08,992 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:00:08,993 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:00:09,066 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:00:09,082 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:09,082 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:09,083 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:09,083 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:00:09,093 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,093 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:00:09,093 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,093 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:00:09,103 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:09,155 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:09,207 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:00:09,259 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,259 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:00:09,311 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,311 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:00:09,311 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:00:09,516 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,836 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:00:09,836 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,837 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:00:09,888 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,940 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:00:09,941 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:09,959 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:00:09\nReference:9d23806f-bea0-4e5e-9601-d6c8e78a5e00\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:00:09 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:00:09"). +2025-10-27 17:00:09,959 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:00:09 +Reference:9d23806f-bea0-4e5e-9601-d6c8e78a5e00 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:00:09 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:00:09 +2025-10-27 17:00:09,960 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:00:41,092 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:00:41,093 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:00:41,162 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:00:41,187 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:41,187 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:41,188 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:41,188 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:00:41,188 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:41,188 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:00:41,189 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:41,189 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:00:41,207 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:41,258 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:41,310 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:00:41,362 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:41,362 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:00:41,414 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:41,414 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:00:41,414 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:00:41,621 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:42,126 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:00:42,126 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:42,126 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:00:42,178 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:42,230 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:42,230 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:00:42,230 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:42,230 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:00:42,230 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:00:42,231 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:42,231 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:00:42,231 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:00:42,231 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:42,231 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:00:42,231 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:42,231 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:00:42,231 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:00:42,263 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:00:41\nReference:3a4864a4-9003-4464-8824-e557d357f1ad\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:00:41 TrackingId:e4d546972f124ac3bb3203de243ad198_G16, SystemTracker:gateway5, Timestamp:2025-10-27T08:00:41"). +2025-10-27 17:00:42,263 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:00:41 +Reference:3a4864a4-9003-4464-8824-e557d357f1ad +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:00:41 TrackingId:e4d546972f124ac3bb3203de243ad198_G16, SystemTracker:gateway5, Timestamp:2025-10-27T08:00:41 +2025-10-27 17:00:42,263 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:01:15,880 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:01:15,881 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:01:15,941 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:01:15,956 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:15,956 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:15,957 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:15,957 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:01:15,958 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:15,958 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:01:15,958 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:15,958 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:01:15,968 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:16,020 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:16,071 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:01:16,122 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,122 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:01:16,173 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,173 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:01:16,173 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:01:16,380 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,802 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:01:16,802 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,802 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:01:16,852 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,902 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,902 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:01:16,902 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,902 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:01:16,902 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:01:16,903 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:16,903 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:16,903 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:01:16,903 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,903 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:01:16,903 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,903 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:01:16,903 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:16,952 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:01:16\nReference:5c04d8c8-67b5-4888-98f5-a3ff7f73e107\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:01:16 TrackingId:9eadb900326f4de9b7e6307faca09dc8_G12, SystemTracker:gateway5, Timestamp:2025-10-27T08:01:16"). +2025-10-27 17:01:16,952 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:01:16 +Reference:5c04d8c8-67b5-4888-98f5-a3ff7f73e107 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:01:16 TrackingId:9eadb900326f4de9b7e6307faca09dc8_G12, SystemTracker:gateway5, Timestamp:2025-10-27T08:01:16 +2025-10-27 17:01:16,953 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:01:47,618 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:01:47,619 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:01:47,689 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:01:47,704 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:47,705 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:47,705 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:47,705 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:01:47,706 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:47,706 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:01:47,706 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:47,706 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:01:47,716 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:47,769 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:47,820 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:01:47,871 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:47,871 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:01:47,922 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:47,923 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:01:47,923 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:01:48,129 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:48,507 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:01:48,507 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:48,507 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:01:48,559 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:48,610 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:48,610 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:01:48,610 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:48,610 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:01:48,610 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:01:48,610 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:48,610 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:01:48,611 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:01:48,611 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:48,611 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:01:48,611 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:48,611 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:01:48,611 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:01:48,636 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:01:48\nReference:0304b88d-8732-4f6f-ab58-34c50fe668fb\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:01:48 TrackingId:f769f925744446dd9e45cb096a6c56e1_G5, SystemTracker:gateway5, Timestamp:2025-10-27T08:01:48"). +2025-10-27 17:01:48,636 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:01:48 +Reference:0304b88d-8732-4f6f-ab58-34c50fe668fb +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:01:48 TrackingId:f769f925744446dd9e45cb096a6c56e1_G5, SystemTracker:gateway5, Timestamp:2025-10-27T08:01:48 +2025-10-27 17:01:48,636 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:02:19,408 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:02:19,409 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:02:19,483 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:02:19,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:19,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:19,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:19,501 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:02:19,502 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:19,502 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:02:19,502 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:19,502 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:02:19,512 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:19,563 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:19,614 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:02:19,665 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:19,666 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:02:19,716 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:19,716 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:02:19,717 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:02:19,920 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:20,292 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:02:20,292 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:20,293 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:02:20,344 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:20,396 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:20,397 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:02:20,397 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:20,397 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:02:20,397 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:02:20,397 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:20,397 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:20,398 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:02:20,398 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:20,398 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:02:20,398 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:20,398 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:02:20,398 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:20,429 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:02:19\nReference:1a8bcd13-41c4-4778-abdb-7b20230f998f\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:02:20 TrackingId:e604fa628a3745c0903101aa426f29e8_G29, SystemTracker:gateway5, Timestamp:2025-10-27T08:02:20"). +2025-10-27 17:02:20,429 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:02:19 +Reference:1a8bcd13-41c4-4778-abdb-7b20230f998f +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:02:20 TrackingId:e604fa628a3745c0903101aa426f29e8_G29, SystemTracker:gateway5, Timestamp:2025-10-27T08:02:20 +2025-10-27 17:02:20,430 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:02:29,351 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:49794 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:02:29,388 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:02:52,326 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:02:52,327 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:02:52,385 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:02:52,404 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:52,404 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:52,404 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:52,405 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:02:52,405 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:52,405 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:02:52,406 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:52,406 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:02:52,415 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:52,467 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:52,519 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:02:52,570 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:52,570 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:02:52,622 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:52,623 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:02:52,623 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:02:52,829 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:53,269 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:02:53,269 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:53,269 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:02:53,321 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:53,373 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:53,373 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:02:53,373 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:53,373 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:02:53,373 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:02:53,373 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:53,374 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:02:53,374 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:02:53,374 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:53,374 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:02:53,374 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:53,374 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:02:53,374 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:02:53,389 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:02:52\nReference:7a282a8c-f41d-4cd3-b58f-fafa529d9313\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:02:53 TrackingId:67d7bd14a58b4f3da2c1601590d64bdf_G31, SystemTracker:gateway5, Timestamp:2025-10-27T08:02:53"). +2025-10-27 17:02:53,389 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:02:52 +Reference:7a282a8c-f41d-4cd3-b58f-fafa529d9313 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:02:53 TrackingId:67d7bd14a58b4f3da2c1601590d64bdf_G31, SystemTracker:gateway5, Timestamp:2025-10-27T08:02:53 +2025-10-27 17:02:53,389 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:03:26,466 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:03:26,466 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:03:26,726 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:03:26,743 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:26,743 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:26,743 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:26,743 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:03:26,743 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:26,743 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:03:26,743 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:26,743 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:03:26,752 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:26,804 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:26,855 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:03:26,907 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:26,907 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:03:26,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:26,957 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:03:26,957 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:03:27,160 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:27,523 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:03:27,523 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:27,523 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:03:27,574 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:03:27,626 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:27,647 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:03:27\nReference:e7639ae9-3ef1-4a57-82de-e29b5ff54e45\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:03:27 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:03:27"). +2025-10-27 17:03:27,647 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:03:27 +Reference:e7639ae9-3ef1-4a57-82de-e29b5ff54e45 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:03:27 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:03:27 +2025-10-27 17:03:27,647 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:03:34,797 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:03:59,860 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:03:59,861 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:03:59,912 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:03:59,927 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:59,927 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:59,927 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:59,927 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:03:59,927 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:59,927 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:03:59,927 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:03:59,927 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:03:59,939 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:03:59,990 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:00,041 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:04:00,092 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,092 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:04:00,143 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,143 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:04:00,143 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:04:00,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,770 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:04:00,770 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,770 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:04:00,821 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:04:00,873 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:00,884 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:04:00\nReference:3042cb31-9713-4c31-a165-4cf4a1785947\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:04:00 TrackingId:f95a8629f37b4a79bf39489e5eb57624_G17, SystemTracker:gateway5, Timestamp:2025-10-27T08:04:00"). +2025-10-27 17:04:00,884 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:04:00 +Reference:3042cb31-9713-4c31-a165-4cf4a1785947 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:04:00 TrackingId:f95a8629f37b4a79bf39489e5eb57624_G17, SystemTracker:gateway5, Timestamp:2025-10-27T08:04:00 +2025-10-27 17:04:00,884 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:04:33,786 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:04:33,786 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:04:33,841 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:04:33,857 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:33,857 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:33,857 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:33,858 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:04:33,858 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:33,858 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:04:33,858 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:33,858 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:04:33,869 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:33,920 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:33,972 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:04:34,028 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,032 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:04:34,083 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,083 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:04:34,083 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:04:34,289 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,718 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:04:34,719 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,719 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:04:34,770 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,821 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,821 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:04:34,822 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:04:34,856 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:04:34\nReference:2d8cde1b-f065-4566-9f32-67fa70b2b08b\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:04:34 TrackingId:88b921350b3b4ad99db87dda745072ed_G11, SystemTracker:gateway5, Timestamp:2025-10-27T08:04:34"). +2025-10-27 17:04:34,856 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:04:34 +Reference:2d8cde1b-f065-4566-9f32-67fa70b2b08b +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:04:34 TrackingId:88b921350b3b4ad99db87dda745072ed_G11, SystemTracker:gateway5, Timestamp:2025-10-27T08:04:34 +2025-10-27 17:04:34,856 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:05:07,343 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:05:07,345 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:05:07,436 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:05:07,458 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:07,458 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:07,458 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:07,459 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:05:07,459 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:07,459 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:05:07,459 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:07,459 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:05:07,468 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:07,521 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:07,572 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:05:07,622 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:07,623 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:05:07,674 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:07,674 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:05:07,674 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:05:07,880 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:08,311 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:05:08,312 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:08,312 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:05:08,363 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:08,415 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:05:08,416 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:08,467 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:05:07\nReference:b312dac9-e078-4e24-9b05-ce97ee5b278a\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:05:08 TrackingId:075ba35328594c068746f9d96f6f4a63_G20, SystemTracker:gateway5, Timestamp:2025-10-27T08:05:08"). +2025-10-27 17:05:08,467 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:05:07 +Reference:b312dac9-e078-4e24-9b05-ce97ee5b278a +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:05:08 TrackingId:075ba35328594c068746f9d96f6f4a63_G20, SystemTracker:gateway5, Timestamp:2025-10-27T08:05:08 +2025-10-27 17:05:08,467 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:05:40,524 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:05:40,525 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:05:40,578 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:05:40,609 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:40,610 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:40,610 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:40,610 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:05:40,610 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:40,610 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:05:40,610 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:40,610 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:05:40,619 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:40,670 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:40,722 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:05:40,772 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:40,773 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:05:40,824 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:40,825 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:05:40,825 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:05:41,032 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:41,537 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:05:41,538 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:41,538 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:05:41,589 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:41,641 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:41,641 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:05:41,641 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:41,641 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:05:41,642 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:05:41,642 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:41,642 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:05:41,642 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:05:41,642 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:41,642 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:05:41,642 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:41,642 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:05:41,642 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:05:41,692 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:05:41\nReference:a53f5703-c49b-4aa5-9e4e-b30a82ecb479\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:05:41 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:05:41"). +2025-10-27 17:05:41,693 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:05:41 +Reference:a53f5703-c49b-4aa5-9e4e-b30a82ecb479 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:05:41 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:05:41 +2025-10-27 17:05:41,693 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:06:15,525 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:06:15,526 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:06:15,580 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:06:15,600 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:15,600 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:15,600 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:15,600 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:06:15,600 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:15,600 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:06:15,600 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:15,600 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:06:15,609 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:15,661 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:15,712 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:06:15,763 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:15,764 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:06:15,815 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:15,815 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:06:15,815 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:06:16,022 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:16,420 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:06:16,420 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:16,420 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:06:16,471 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:16,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:16,521 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:06:16,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:16,521 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:06:16,521 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:06:16,522 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:16,522 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:16,522 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:06:16,522 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:16,522 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:06:16,522 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:16,522 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:06:16,522 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:16,551 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:06:16\nReference:cc8f9164-3c78-4025-a1a7-dcf7959f7ca0\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:06:16 TrackingId:beabfda074774cb38d991fdfadff7a0f_G2, SystemTracker:gateway5, Timestamp:2025-10-27T08:06:16"). +2025-10-27 17:06:16,551 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:06:16 +Reference:cc8f9164-3c78-4025-a1a7-dcf7959f7ca0 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:06:16 TrackingId:beabfda074774cb38d991fdfadff7a0f_G2, SystemTracker:gateway5, Timestamp:2025-10-27T08:06:16 +2025-10-27 17:06:16,551 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:06:47,015 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:06:47,016 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:06:47,068 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:06:47,082 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:47,082 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:47,082 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:47,082 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:06:47,082 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:47,082 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:06:47,082 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:47,082 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:06:47,089 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:47,140 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:47,192 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:06:47,244 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:47,244 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:06:47,295 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:47,295 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:06:47,295 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:06:47,502 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:47,912 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:06:47,912 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:47,912 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:06:47,963 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:48,015 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:48,015 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:06:48,016 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:48,016 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:06:48,016 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:06:48,016 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:48,016 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:06:48,016 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:06:48,017 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:48,017 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:06:48,017 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:48,017 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:06:48,017 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:06:48,036 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:06:47\nReference:0ed53da9-9717-4186-a1b3-94d55d6cb5b4\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:06:47 TrackingId:f95a8629f37b4a79bf39489e5eb57624_G17, SystemTracker:gateway5, Timestamp:2025-10-27T08:06:47"). +2025-10-27 17:06:48,036 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:06:47 +Reference:0ed53da9-9717-4186-a1b3-94d55d6cb5b4 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:06:47 TrackingId:f95a8629f37b4a79bf39489e5eb57624_G17, SystemTracker:gateway5, Timestamp:2025-10-27T08:06:47 +2025-10-27 17:06:48,036 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:07:22,406 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:07:22,407 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:07:22,479 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:07:22,500 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:22,500 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:22,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:22,501 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:07:22,501 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:22,501 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:07:22,501 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:22,501 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:07:22,511 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:22,562 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:22,613 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:07:22,664 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:22,664 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:07:22,715 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:22,715 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:07:22,715 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:07:22,916 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:23,491 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:07:23,491 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:23,491 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:07:23,542 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:23,593 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:07:23,594 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:23,621 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:07:22\nReference:fd141ddc-766d-4cbf-85e5-dd87ed18ae01\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:07:23 TrackingId:f769f925744446dd9e45cb096a6c56e1_G5, SystemTracker:gateway5, Timestamp:2025-10-27T08:07:23"). +2025-10-27 17:07:23,621 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:07:22 +Reference:fd141ddc-766d-4cbf-85e5-dd87ed18ae01 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:07:23 TrackingId:f769f925744446dd9e45cb096a6c56e1_G5, SystemTracker:gateway5, Timestamp:2025-10-27T08:07:23 +2025-10-27 17:07:23,621 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:07:40,602 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:07:55,027 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:07:55,028 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:07:55,086 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:07:55,113 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:55,113 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:55,113 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:55,114 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:07:55,114 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:55,114 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:07:55,114 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:55,114 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:07:55,133 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:55,184 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:55,235 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:07:55,286 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:55,287 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:07:55,338 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:55,338 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:07:55,338 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:07:55,541 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:55,986 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:07:55,986 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:55,986 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:07:56,038 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:56,090 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:56,090 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:07:56,090 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:07:56,091 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:07:56,099 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:07:55\nReference:4e0a495c-65f5-4869-89bb-6280723c62ce\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:07:55 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:07:55"). +2025-10-27 17:07:56,099 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:07:55 +Reference:4e0a495c-65f5-4869-89bb-6280723c62ce +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:07:55 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:07:55 +2025-10-27 17:07:56,099 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:08:30,632 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:08:30,634 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:08:30,703 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:08:30,722 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:08:30,722 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:08:30,723 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:08:30,723 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:08:30,723 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:30,723 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:08:30,723 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:30,724 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:08:30,733 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:08:30,784 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:08:30,835 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:08:30,887 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:30,887 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:08:30,938 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:30,938 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:08:30,938 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:08:31,145 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:31,579 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:08:31,579 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:31,579 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:08:31,630 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:08:31,681 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:08:31,705 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:08:31\nReference:8838531a-c241-434f-8f63-324a805bc3cb\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:08:31 TrackingId:e7e1095cc5eb40ed8ea0da5853f4d7b5_G7, SystemTracker:gateway5, Timestamp:2025-10-27T08:08:31"). +2025-10-27 17:08:31,705 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:08:31 +Reference:8838531a-c241-434f-8f63-324a805bc3cb +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:08:31 TrackingId:e7e1095cc5eb40ed8ea0da5853f4d7b5_G7, SystemTracker:gateway5, Timestamp:2025-10-27T08:08:31 +2025-10-27 17:08:31,705 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:09:03,495 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:09:03,496 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:09:03,557 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:09:03,579 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:03,579 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:03,579 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:03,579 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:09:03,598 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:03,598 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:09:03,599 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:03,599 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:09:03,613 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:03,664 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:03,715 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:09:03,766 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:03,767 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:09:03,818 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:03,819 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:09:03,819 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:09:04,024 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:04,424 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:09:04,424 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:04,424 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:09:04,474 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:04,525 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:04,525 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:09:04,525 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:04,525 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:09:04,525 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:09:04,525 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:04,525 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:04,525 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:09:04,525 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:04,526 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:09:04,526 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:04,526 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:09:04,526 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:04,562 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:09:04\nReference:a25746ad-68b0-4a46-9183-0240698bf4ec\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:09:04 TrackingId:c21990b6bc5e4c9fb9a33aaaf677ddcd_G8, SystemTracker:gateway5, Timestamp:2025-10-27T08:09:04"). +2025-10-27 17:09:04,562 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:09:04 +Reference:a25746ad-68b0-4a46-9183-0240698bf4ec +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:09:04 TrackingId:c21990b6bc5e4c9fb9a33aaaf677ddcd_G8, SystemTracker:gateway5, Timestamp:2025-10-27T08:09:04 +2025-10-27 17:09:04,562 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:09:20,066 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:51588 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:09:20,159 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:09:38,139 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:09:38,140 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:09:38,266 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:09:38,313 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:38,313 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:38,314 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:38,314 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:09:38,314 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:38,314 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:09:38,314 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:38,314 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:09:38,331 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:38,382 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:38,434 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:09:38,485 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:38,485 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:09:38,537 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:38,537 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:09:38,537 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:09:38,744 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:39,247 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:09:39,247 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:39,247 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:09:39,298 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:39,349 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:09:39,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:09:39,357 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:09:38\nReference:a27e785b-e768-4083-a7e4-c97d7ac044ca\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:09:39 TrackingId:2d5387b1ae804037a005437578728f73_G14, SystemTracker:gateway5, Timestamp:2025-10-27T08:09:39"). +2025-10-27 17:09:39,357 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:09:38 +Reference:a27e785b-e768-4083-a7e4-c97d7ac044ca +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:09:39 TrackingId:2d5387b1ae804037a005437578728f73_G14, SystemTracker:gateway5, Timestamp:2025-10-27T08:09:39 +2025-10-27 17:09:39,357 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:10:11,108 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:10:11,109 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:10:11,168 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:10:11,188 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:11,188 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:11,189 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:11,189 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:10:11,190 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:11,190 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:10:11,190 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:11,190 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:10:11,196 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:11,247 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:11,298 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:10:11,348 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:11,348 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:10:11,399 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:11,399 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:10:11,399 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:10:11,603 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:11,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:10:11,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:11,957 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:10:12,009 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:10:12,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:12,078 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:10:11\nReference:9c5d3b70-8062-4772-9e5e-ba4a2c7b87c3\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:10:11 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:10:11"). +2025-10-27 17:10:12,078 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:10:11 +Reference:9c5d3b70-8062-4772-9e5e-ba4a2c7b87c3 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:10:11 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:10:11 +2025-10-27 17:10:12,078 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:10:42,056 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:10:42,057 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:10:42,115 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:10:42,136 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:42,136 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:42,136 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:42,136 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:10:42,136 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:42,136 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:10:42,136 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:42,136 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:10:42,148 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:42,198 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:42,250 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:10:42,300 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:42,300 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:10:42,351 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:42,352 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:10:42,352 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:10:42,558 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:43,063 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:10:43,064 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:43,064 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:10:43,115 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:43,165 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:43,166 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:10:43,166 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:43,166 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:10:43,166 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:10:43,166 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:43,166 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:10:43,166 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:10:43,166 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:43,167 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:10:43,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:43,167 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:10:43,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:10:43,179 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:10:42\nReference:249b6076-e892-4c35-a943-f66e5a4f9d50\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:10:42 TrackingId:6c4c92961f134ddb882f6c5f06d24cff_G0, SystemTracker:gateway5, Timestamp:2025-10-27T08:10:42"). +2025-10-27 17:10:43,179 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:10:42 +Reference:249b6076-e892-4c35-a943-f66e5a4f9d50 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:10:42 TrackingId:6c4c92961f134ddb882f6c5f06d24cff_G0, SystemTracker:gateway5, Timestamp:2025-10-27T08:10:42 +2025-10-27 17:10:43,179 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:11:16,878 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:11:16,879 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:11:16,936 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:11:16,951 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:16,951 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:16,952 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:16,952 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:11:16,952 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:16,952 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:11:16,952 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:16,952 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:11:16,962 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:17,013 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:17,064 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:11:17,114 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:17,114 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:11:17,165 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:17,165 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:11:17,165 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:11:17,370 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:18,003 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:11:18,003 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:18,003 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:11:18,053 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:11:18,104 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:18,154 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:11:17\nReference:6890cebd-db53-476f-8f9e-5350c10d95c8\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:11:17 TrackingId:339fafadcaf7418d93c474182a100c42_G9, SystemTracker:gateway5, Timestamp:2025-10-27T08:11:17"). +2025-10-27 17:11:18,154 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:11:17 +Reference:6890cebd-db53-476f-8f9e-5350c10d95c8 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:11:17 TrackingId:339fafadcaf7418d93c474182a100c42_G9, SystemTracker:gateway5, Timestamp:2025-10-27T08:11:17 +2025-10-27 17:11:18,154 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:11:52,689 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:11:52,689 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:11:52,795 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:11:52,816 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:52,816 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:52,816 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:52,817 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:11:52,817 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:52,817 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:11:52,817 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:52,817 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:11:52,828 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:52,880 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:52,932 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:11:52,982 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:52,983 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:11:53,034 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:53,034 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:11:53,035 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:11:53,242 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:53,670 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:11:53,670 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:53,670 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:11:53,722 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:53,773 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:11:53,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:11:53,804 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:11:53\nReference:75b46d42-15d4-4191-a42c-2dbfb65156fb\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:11:53 TrackingId:2d5387b1ae804037a005437578728f73_G14, SystemTracker:gateway5, Timestamp:2025-10-27T08:11:53"). +2025-10-27 17:11:53,805 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:11:53 +Reference:75b46d42-15d4-4191-a42c-2dbfb65156fb +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:11:53 TrackingId:2d5387b1ae804037a005437578728f73_G14, SystemTracker:gateway5, Timestamp:2025-10-27T08:11:53 +2025-10-27 17:11:53,805 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:12:27,850 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:12:27,851 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:12:27,908 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:12:27,928 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:12:27,929 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:12:27,929 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:12:27,929 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:12:27,930 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:27,930 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:12:27,930 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:27,930 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:12:27,942 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:12:27,993 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:12:28,044 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:12:28,095 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,096 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:12:28,148 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,148 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:12:28,148 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:12:28,354 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,858 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:12:28,858 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,859 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:12:28,910 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,962 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,962 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:12:28,962 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,962 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:12:28,963 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:12:28,963 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:12:28,963 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:12:28,963 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:12:28,963 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,963 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:12:28,963 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,963 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:12:28,963 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:12:28,968 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:12:28\nReference:0f4fce45-17a3-4a5a-9a56-3fbb82e02c3c\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:12:28 TrackingId:339fafadcaf7418d93c474182a100c42_G9, SystemTracker:gateway5, Timestamp:2025-10-27T08:12:28"). +2025-10-27 17:12:28,969 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:12:28 +Reference:0f4fce45-17a3-4a5a-9a56-3fbb82e02c3c +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:12:28 TrackingId:339fafadcaf7418d93c474182a100c42_G9, SystemTracker:gateway5, Timestamp:2025-10-27T08:12:28 +2025-10-27 17:12:28,969 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:13:00,470 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:13:00,470 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:13:00,562 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:13:00,630 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:00,630 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:00,630 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:00,630 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:13:00,630 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:00,630 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:13:00,630 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:00,630 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:13:00,640 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:00,692 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:00,743 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:13:00,794 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:00,795 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:13:00,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:00,847 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:13:00,847 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:13:01,054 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:01,607 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:13:01,607 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:01,607 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:13:01,658 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:01,709 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:01,709 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:13:01,709 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:01,709 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:13:01,710 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:13:01,710 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:01,710 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:01,710 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:13:01,710 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:01,710 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:13:01,710 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:01,710 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:13:01,710 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:01,739 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:13:01\nReference:ac730424-033d-4110-ac04-32bdd96e8798\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:13:01 TrackingId:075ba35328594c068746f9d96f6f4a63_G20, SystemTracker:gateway5, Timestamp:2025-10-27T08:13:01"). +2025-10-27 17:13:01,739 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:13:01 +Reference:ac730424-033d-4110-ac04-32bdd96e8798 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:13:01 TrackingId:075ba35328594c068746f9d96f6f4a63_G20, SystemTracker:gateway5, Timestamp:2025-10-27T08:13:01 +2025-10-27 17:13:01,739 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:13:32,051 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:13:32,052 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:13:32,105 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:13:32,120 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:32,120 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:32,120 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:32,120 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:13:32,120 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,120 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:13:32,121 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,121 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:13:32,139 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:32,190 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:32,242 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:13:32,294 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,294 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:13:32,345 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,345 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:13:32,345 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:13:32,550 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,885 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:13:32,885 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,885 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:13:32,936 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,988 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,988 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:13:32,988 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,988 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:13:32,988 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:13:32,988 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:32,988 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:13:32,988 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:13:32,988 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,989 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:13:32,989 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:32,989 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:13:32,989 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:13:33,021 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:13:32\nReference:8b9a7cda-31e3-4b39-9a3e-bfa4922aacdd\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:13:32 TrackingId:06c570c65f7447118cf675bb483fbbdb_G15, SystemTracker:gateway5, Timestamp:2025-10-27T08:13:32"). +2025-10-27 17:13:33,021 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:13:32 +Reference:8b9a7cda-31e3-4b39-9a3e-bfa4922aacdd +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:13:32 TrackingId:06c570c65f7447118cf675bb483fbbdb_G15, SystemTracker:gateway5, Timestamp:2025-10-27T08:13:32 +2025-10-27 17:13:33,021 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:14:07,568 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:14:07,569 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:14:07,625 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:14:07,643 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:07,643 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:07,644 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:07,644 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:14:07,644 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:07,644 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:14:07,644 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:07,644 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:14:07,654 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:07,706 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:07,757 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:14:07,809 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:07,810 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:14:07,862 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:07,862 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:14:07,862 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:14:08,070 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:08,465 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:14:08,465 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:08,466 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:14:08,517 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:08,569 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:08,569 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:14:08,569 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:08,569 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:14:08,570 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:14:08,570 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:08,570 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:08,570 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:14:08,570 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:08,570 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:14:08,570 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:08,570 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:14:08,570 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:08,588 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:14:08\nReference:0b7c9042-37c2-4df2-b672-05b5a918bb0f\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:14:08 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:14:08"). +2025-10-27 17:14:08,589 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:14:08 +Reference:0b7c9042-37c2-4df2-b672-05b5a918bb0f +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:14:08 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:14:08 +2025-10-27 17:14:08,589 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:14:43,067 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:14:43,067 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:14:43,121 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:14:43,150 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:43,150 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:43,150 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:43,151 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:14:43,151 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:43,151 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:14:43,151 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:43,151 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:14:43,160 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:43,211 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:43,263 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:14:43,314 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:43,314 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:14:43,366 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:43,367 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:14:43,367 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:14:43,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:44,111 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:14:44,111 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:44,111 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:14:44,162 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:44,214 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:14:44,215 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:44,215 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:14:44,215 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:14:44,236 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:14:43\nReference:2321ec27-842c-4e58-8d15-1d18d5581936\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:14:43 TrackingId:6c4c92961f134ddb882f6c5f06d24cff_G0, SystemTracker:gateway5, Timestamp:2025-10-27T08:14:43"). +2025-10-27 17:14:44,236 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:14:43 +Reference:2321ec27-842c-4e58-8d15-1d18d5581936 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:14:43 TrackingId:6c4c92961f134ddb882f6c5f06d24cff_G0, SystemTracker:gateway5, Timestamp:2025-10-27T08:14:43 +2025-10-27 17:14:44,236 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:15:15,080 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:15:15,082 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:15:15,154 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:15:15,173 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:15,174 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:15,174 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:15,174 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:15:15,174 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:15,175 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:15:15,175 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:15,175 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:15:15,186 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:15,236 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:15,287 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:15:15,338 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:15,338 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:15:15,389 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:15,389 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:15:15,389 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:15:15,595 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:16,099 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:15:16,099 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:16,100 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:15:16,150 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:16,201 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:16,201 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:15:16,202 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:16,252 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:15:15\nReference:e9149196-67bc-49cf-8f84-8d286f766008\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:15:15 TrackingId:e604fa628a3745c0903101aa426f29e8_G29, SystemTracker:gateway5, Timestamp:2025-10-27T08:15:15"). +2025-10-27 17:15:16,253 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:15:15 +Reference:e9149196-67bc-49cf-8f84-8d286f766008 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:15:15 TrackingId:e604fa628a3745c0903101aa426f29e8_G29, SystemTracker:gateway5, Timestamp:2025-10-27T08:15:15 +2025-10-27 17:15:16,253 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:15:19,535 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:15:19,554 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:53054 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:15:19,599 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:15:21,288 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:15:21,308 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:53062 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:15:21,349 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:15:50,045 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:15:50,047 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:15:50,352 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:15:50,442 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:50,442 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:50,442 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:50,443 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:15:50,443 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:50,443 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:15:50,443 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:50,443 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:15:50,500 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:50,552 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:50,604 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:15:50,656 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:50,656 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:15:50,707 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:50,708 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:15:50,708 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:15:50,942 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:51,446 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:15:51,447 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:51,447 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:15:51,499 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:51,549 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:51,549 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:15:51,550 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:15:51,576 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:15:51\nReference:1df09092-317e-415e-a435-3bf8dd147aa9\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:15:51 TrackingId:4a8b6c79abe243a3a753b14892c87299_G10, SystemTracker:gateway5, Timestamp:2025-10-27T08:15:51"). +2025-10-27 17:15:51,576 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:15:51 +Reference:1df09092-317e-415e-a435-3bf8dd147aa9 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:15:51 TrackingId:4a8b6c79abe243a3a753b14892c87299_G10, SystemTracker:gateway5, Timestamp:2025-10-27T08:15:51 +2025-10-27 17:15:51,577 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:16:20,409 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:16:20,409 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:16:25,139 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:16:26,447 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:26,448 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:26,448 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:26,448 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:16:26,470 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:26,470 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:16:26,470 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:26,470 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:16:26,530 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:26,582 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:26,634 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:16:26,685 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:26,686 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:16:26,739 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:26,739 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:16:26,739 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:16:26,946 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:30,788 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:16:30,788 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:30,788 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:16:30,839 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:30,891 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:30,891 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:16:30,891 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:30,891 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:16:30,892 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:16:30,892 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:30,892 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:30,892 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:16:30,892 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:30,892 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:16:30,892 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:30,892 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:16:30,892 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:30,915 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:16:27\nReference:ab7427cd-de73-49b2-9701-bc51f668c46b\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:16:27 TrackingId:9eadb900326f4de9b7e6307faca09dc8_G12, SystemTracker:gateway5, Timestamp:2025-10-27T08:16:27"). +2025-10-27 17:16:30,915 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:16:27 +Reference:ab7427cd-de73-49b2-9701-bc51f668c46b +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:16:27 TrackingId:9eadb900326f4de9b7e6307faca09dc8_G12, SystemTracker:gateway5, Timestamp:2025-10-27T08:16:27 +2025-10-27 17:16:30,915 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:16:51,125 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:16:51,127 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:16:51,180 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:16:51,202 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:51,202 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:51,202 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:51,203 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:16:51,203 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:51,203 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:16:51,203 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:51,203 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:16:51,215 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:51,267 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:51,317 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:16:51,368 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:51,368 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:16:51,419 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:51,419 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:16:51,419 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:16:51,623 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:52,033 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:16:52,033 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:52,034 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:16:52,085 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:52,136 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:52,137 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:16:52,138 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:16:52,150 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:16:51\nReference:7878cd22-c00b-4f35-b11b-1262cee4dec4\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:16:51 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:16:51"). +2025-10-27 17:16:52,151 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:16:51 +Reference:7878cd22-c00b-4f35-b11b-1262cee4dec4 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:16:51 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:16:51 +2025-10-27 17:16:52,151 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:17:24,810 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:17:24,810 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:17:24,869 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:17:24,889 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:24,889 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:24,889 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:24,890 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:17:24,890 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:24,890 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:17:24,890 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:24,890 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:17:24,903 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:24,954 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:25,006 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:17:25,056 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,056 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:17:25,107 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,107 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:17:25,107 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:17:25,313 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,816 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:17:25,816 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,816 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:17:25,867 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:17:25,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:25,932 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:17:25\nReference:1d117fe1-7bfd-4601-8887-dfc7055a884a\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:17:25 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:17:25"). +2025-10-27 17:17:25,932 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:17:25 +Reference:1d117fe1-7bfd-4601-8887-dfc7055a884a +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:17:25 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:17:25 +2025-10-27 17:17:25,933 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:17:55,518 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:17:55,518 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:17:55,579 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:17:55,594 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:55,594 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:55,594 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:55,594 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:17:55,595 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:55,595 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:17:55,595 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:55,595 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:17:55,604 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:55,655 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:55,706 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:17:55,758 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:55,758 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:17:55,810 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:55,811 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:17:55,811 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:17:56,014 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:56,425 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:17:56,425 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:56,425 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:17:56,476 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:56,527 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:56,528 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:17:56,528 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:56,528 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:17:56,528 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:17:56,528 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:56,529 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:17:56,529 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:17:56,529 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:56,529 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:17:56,529 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:56,529 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:17:56,529 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:17:56,536 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:17:56\nReference:7a259d1c-67d1-4098-9a4d-2ff43c1a366c\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:17:56 TrackingId:7166d3b0e2e64a8580880d8f8588f788_G18, SystemTracker:gateway5, Timestamp:2025-10-27T08:17:56"). +2025-10-27 17:17:56,536 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:17:56 +Reference:7a259d1c-67d1-4098-9a4d-2ff43c1a366c +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:17:56 TrackingId:7166d3b0e2e64a8580880d8f8588f788_G18, SystemTracker:gateway5, Timestamp:2025-10-27T08:17:56 +2025-10-27 17:17:56,536 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:18:27,649 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:18:27,650 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:18:27,713 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:18:27,732 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:18:27,732 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:18:27,732 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:18:27,732 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:18:27,733 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:27,733 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:18:27,733 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:27,733 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:18:27,743 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:18:27,794 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:18:27,845 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:18:27,895 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:27,896 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:18:27,947 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:27,947 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:18:27,947 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:18:28,152 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:28,572 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:18:28,572 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:28,572 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:18:28,622 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:28,673 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:28,673 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:18:28,673 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:28,673 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:18:28,674 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:18:28,674 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:18:28,674 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:18:28,674 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:18:28,674 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:28,674 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:18:28,674 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:28,674 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:18:28,674 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:18:28,719 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:18:28\nReference:fbb6e7f2-6d22-4b73-949a-e05adeaa1870\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:18:28 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:18:28"). +2025-10-27 17:18:28,720 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:18:28 +Reference:fbb6e7f2-6d22-4b73-949a-e05adeaa1870 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:18:28 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:18:28 +2025-10-27 17:18:28,720 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:19:02,484 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:19:02,485 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:19:02,538 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:19:02,571 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:02,571 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:02,571 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:02,571 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:19:02,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:02,572 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:19:02,572 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:02,572 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:19:02,597 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:02,646 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:02,698 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:19:02,750 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:02,751 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:19:02,801 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:02,802 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:19:02,802 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:19:03,008 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:03,444 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:19:03,444 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:03,444 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:19:03,495 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:03,546 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:03,547 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:19:03,547 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:03,547 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:19:03,547 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:19:03,547 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:03,547 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:03,547 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:19:03,548 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:03,548 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:19:03,548 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:03,548 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:19:03,548 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:03,556 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:19:03\nReference:ec6fd54e-93bf-4431-89fe-26d9f8b27e65\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:19:03 TrackingId:67d7bd14a58b4f3da2c1601590d64bdf_G31, SystemTracker:gateway5, Timestamp:2025-10-27T08:19:03"). +2025-10-27 17:19:03,556 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:19:03 +Reference:ec6fd54e-93bf-4431-89fe-26d9f8b27e65 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:19:03 TrackingId:67d7bd14a58b4f3da2c1601590d64bdf_G31, SystemTracker:gateway5, Timestamp:2025-10-27T08:19:03 +2025-10-27 17:19:03,556 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:19:28,762 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:54130 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:19:28,802 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:19:36,070 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:19:36,071 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:19:36,131 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:19:36,148 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:36,148 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:36,148 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:36,148 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:19:36,149 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:36,149 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:19:36,149 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:36,149 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:19:36,159 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:36,209 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:36,260 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:19:36,312 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:36,312 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:19:36,363 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:36,364 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:19:36,364 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:19:36,568 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:37,079 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:19:37,079 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:37,079 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:19:37,131 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:37,183 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:37,183 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:19:37,183 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:37,183 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:19:37,184 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:19:37,184 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:37,184 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:19:37,184 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:19:37,184 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:37,184 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:19:37,184 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:37,184 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:19:37,184 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:19:37,193 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:19:36\nReference:d0da430a-db69-4133-b878-73ec407ecd53\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:19:36 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:19:36"). +2025-10-27 17:19:37,193 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:19:36 +Reference:d0da430a-db69-4133-b878-73ec407ecd53 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:19:36 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:19:36 +2025-10-27 17:19:37,193 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:20:07,831 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:20:07,831 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:20:07,891 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:20:07,909 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:07,909 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:07,909 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:07,909 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:20:07,909 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:07,909 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:20:07,909 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:07,910 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:20:07,920 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:07,972 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:08,023 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:20:08,075 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,075 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:20:08,126 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,126 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:20:08,126 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:20:08,331 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,756 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:20:08,756 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,756 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:20:08,807 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,859 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,859 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:20:08,859 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,859 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:20:08,859 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:20:08,859 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:08,859 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:08,859 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:20:08,860 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,860 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:20:08,860 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,860 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:20:08,860 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:08,896 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:20:08\nReference:187ef978-9c3d-4b1e-8887-645ea5ee9230\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:20:08 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:20:08"). +2025-10-27 17:20:08,897 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:20:08 +Reference:187ef978-9c3d-4b1e-8887-645ea5ee9230 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:20:08 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:20:08 +2025-10-27 17:20:08,897 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:20:39,111 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:20:39,112 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:20:39,181 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:20:39,198 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:39,199 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:39,199 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:39,199 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:20:39,199 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:39,199 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:20:39,199 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:39,199 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:20:39,209 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:39,261 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:39,312 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:20:39,364 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:39,364 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:20:39,415 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:39,415 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:20:39,415 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:20:39,622 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:40,054 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:20:40,054 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:40,054 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:20:40,106 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:40,157 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:40,157 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:20:40,157 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:40,157 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:20:40,157 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:20:40,157 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:40,158 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:20:40,158 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:20:40,158 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:40,158 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:20:40,158 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:40,158 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:20:40,158 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:20:40,186 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:20:39\nReference:63d0cb32-3b48-49f9-b0ba-35acec6f9d94\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:20:39 TrackingId:0adf4d97a2f3429dafceda129ef0ec61_G23, SystemTracker:gateway5, Timestamp:2025-10-27T08:20:39"). +2025-10-27 17:20:40,186 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:20:39 +Reference:63d0cb32-3b48-49f9-b0ba-35acec6f9d94 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:20:39 TrackingId:0adf4d97a2f3429dafceda129ef0ec61_G23, SystemTracker:gateway5, Timestamp:2025-10-27T08:20:39 +2025-10-27 17:20:40,186 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:21:13,425 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:21:13,426 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:21:13,480 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:21:13,497 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:13,497 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:13,497 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:13,497 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:21:13,497 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:13,497 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:21:13,498 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:13,498 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:21:13,503 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:13,555 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:13,606 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:21:13,656 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:13,657 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:21:13,708 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:13,708 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:21:13,708 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:21:13,913 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:14,417 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:21:14,417 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:14,417 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:21:14,468 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:14,520 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:21:14,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:14,521 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:21:14,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:14,549 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:21:13\nReference:f758d0b6-40cb-4a93-8297-69baf82d8fb5\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:21:14 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:21:14"). +2025-10-27 17:21:14,549 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:21:13 +Reference:f758d0b6-40cb-4a93-8297-69baf82d8fb5 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:21:14 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:21:14 +2025-10-27 17:21:14,549 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:21:49,096 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:21:49,096 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:21:49,162 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:21:49,180 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:49,180 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:49,180 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:49,181 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:21:49,181 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:49,181 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:21:49,181 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:49,181 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:21:49,191 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:49,242 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:49,294 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:21:49,345 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:49,345 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:21:49,398 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:49,398 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:21:49,399 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:21:49,605 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:49,998 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:21:49,999 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:49,999 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:21:50,051 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:50,102 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:21:50,103 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:50,104 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:21:50,104 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:21:50,112 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:21:49\nReference:de37d556-c759-412d-9be8-ffa7662c0b21\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:21:49 TrackingId:beabfda074774cb38d991fdfadff7a0f_G2, SystemTracker:gateway5, Timestamp:2025-10-27T08:21:49"). +2025-10-27 17:21:50,113 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:21:49 +Reference:de37d556-c759-412d-9be8-ffa7662c0b21 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:21:49 TrackingId:beabfda074774cb38d991fdfadff7a0f_G2, SystemTracker:gateway5, Timestamp:2025-10-27T08:21:49 +2025-10-27 17:21:50,113 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:22:21,579 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:22:21,580 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:22:21,663 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:22:21,679 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:21,679 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:21,679 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:21,680 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:22:21,680 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:21,680 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:22:21,680 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:21,680 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:22:21,688 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:21,739 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:21,790 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:22:21,840 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:21,841 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:22:21,891 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:21,892 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:22:21,892 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:22:22,096 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:22,599 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:22:22,600 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:22,600 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:22:22,652 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:22,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:22,704 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:22:22,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:22,704 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:22:22,704 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:22:22,705 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:22,705 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:22,705 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:22:22,705 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:22,705 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:22:22,705 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:22,705 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:22:22,705 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:22,756 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:22:22\nReference:0a86a194-918a-4a7e-9d7a-06b36d94dcc4\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:22:22 TrackingId:5adceb1c6eb94c568a0621f417ea3787_G21, SystemTracker:gateway5, Timestamp:2025-10-27T08:22:22"). +2025-10-27 17:22:22,757 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:22:22 +Reference:0a86a194-918a-4a7e-9d7a-06b36d94dcc4 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:22:22 TrackingId:5adceb1c6eb94c568a0621f417ea3787_G21, SystemTracker:gateway5, Timestamp:2025-10-27T08:22:22 +2025-10-27 17:22:22,757 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:22:56,393 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:22:56,395 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:22:56,454 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:22:56,470 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:56,470 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:56,471 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:56,471 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:22:56,471 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:56,471 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:22:56,471 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:56,471 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:22:56,479 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:56,531 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:56,583 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:22:56,635 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:56,635 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:22:56,688 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:56,688 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:22:56,688 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:22:56,896 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:57,243 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:22:57,243 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:57,243 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:22:57,294 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:22:57,344 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:22:57,356 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:22:56\nReference:92004913-c3b6-4838-a42a-f0e1a9e9ab42\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:22:57 TrackingId:fd3e7ace976743418ae7f51e4e651bc4_G30, SystemTracker:gateway5, Timestamp:2025-10-27T08:22:57"). +2025-10-27 17:22:57,356 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:22:56 +Reference:92004913-c3b6-4838-a42a-f0e1a9e9ab42 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:22:57 TrackingId:fd3e7ace976743418ae7f51e4e651bc4_G30, SystemTracker:gateway5, Timestamp:2025-10-27T08:22:57 +2025-10-27 17:22:57,356 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:23:30,535 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:23:30,536 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:23:30,599 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:23:30,616 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:23:30,616 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:23:30,616 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:23:30,616 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:23:30,616 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:30,616 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:23:30,616 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:30,617 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:23:30,626 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:23:30,676 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:23:30,728 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:23:30,780 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:30,781 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:23:30,832 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:30,832 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:23:30,832 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:23:31,040 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:31,477 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:23:31,477 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:31,477 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:23:31,529 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:31,581 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:31,582 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:23:31,582 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:31,582 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:23:31,582 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:23:31,582 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:23:31,582 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:23:31,583 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:23:31,583 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:31,583 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:23:31,583 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:31,583 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:23:31,583 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:23:31,602 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:23:31\nReference:d9665a1a-ffed-4a7a-84bf-6013d24468e4\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:23:31 TrackingId:e7e1095cc5eb40ed8ea0da5853f4d7b5_G7, SystemTracker:gateway5, Timestamp:2025-10-27T08:23:31"). +2025-10-27 17:23:31,602 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:23:31 +Reference:d9665a1a-ffed-4a7a-84bf-6013d24468e4 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:23:31 TrackingId:e7e1095cc5eb40ed8ea0da5853f4d7b5_G7, SystemTracker:gateway5, Timestamp:2025-10-27T08:23:31 +2025-10-27 17:23:31,602 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:24:02,231 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:24:02,233 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:24:02,301 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:24:02,318 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:02,319 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:02,319 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:02,319 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:24:02,320 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:02,320 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:24:02,320 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:02,320 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:24:02,331 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:02,382 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:02,434 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:24:02,485 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:02,485 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:24:02,537 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:02,537 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:24:02,537 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:24:02,744 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:03,248 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:24:03,248 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:03,248 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:24:03,300 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:03,351 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:03,351 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:24:03,351 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:03,351 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:24:03,352 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:24:03,352 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:03,352 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:03,352 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:24:03,352 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:03,352 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:24:03,352 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:03,352 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:24:03,352 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:03,403 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:24:02\nReference:9da13fff-52e4-40be-883b-27cb05ea18ee\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:24:03 TrackingId:daf94f96845d4a4c8f204bc24deb4033_G28, SystemTracker:gateway5, Timestamp:2025-10-27T08:24:03"). +2025-10-27 17:24:03,403 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:24:02 +Reference:9da13fff-52e4-40be-883b-27cb05ea18ee +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:24:03 TrackingId:daf94f96845d4a4c8f204bc24deb4033_G28, SystemTracker:gateway5, Timestamp:2025-10-27T08:24:03 +2025-10-27 17:24:03,403 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:24:34,727 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:24:34,728 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:24:34,819 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:24:34,860 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:34,860 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:34,861 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:34,861 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:24:34,861 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:34,862 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:24:34,862 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:34,862 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:24:34,890 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:34,942 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:34,994 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:24:35,046 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,046 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:24:35,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,098 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:24:35,098 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:24:35,305 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,662 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:24:35,662 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,662 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:24:35,714 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,765 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,765 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:24:35,765 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,765 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:24:35,766 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:24:35,766 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:35,766 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:24:35,766 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:24:35,766 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,766 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:24:35,766 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,766 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:24:35,766 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:24:35,801 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:24:35\nReference:43ae8035-c843-4b48-8e4c-0d0f7cc7b6a0\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:24:35 TrackingId:67d7bd14a58b4f3da2c1601590d64bdf_G31, SystemTracker:gateway5, Timestamp:2025-10-27T08:24:35"). +2025-10-27 17:24:35,802 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:24:35 +Reference:43ae8035-c843-4b48-8e4c-0d0f7cc7b6a0 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:24:35 TrackingId:67d7bd14a58b4f3da2c1601590d64bdf_G31, SystemTracker:gateway5, Timestamp:2025-10-27T08:24:35 +2025-10-27 17:24:35,802 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:25:06,275 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:25:06,276 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:25:06,338 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:25:06,357 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:06,357 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:06,357 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:06,358 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:25:06,384 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:06,384 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:25:06,385 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:06,385 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:25:06,391 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:06,441 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:06,492 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:25:06,544 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:06,545 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:25:06,596 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:06,596 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:25:06,596 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:25:06,802 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:07,197 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:25:07,197 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:07,197 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:25:07,248 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:07,299 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:07,299 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:25:07,300 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:07,347 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:25:06\nReference:12ef3f53-3144-4826-a1a2-3c48d7c84e56\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:25:07 TrackingId:0adf4d97a2f3429dafceda129ef0ec61_G23, SystemTracker:gateway5, Timestamp:2025-10-27T08:25:07"). +2025-10-27 17:25:07,347 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:25:06 +Reference:12ef3f53-3144-4826-a1a2-3c48d7c84e56 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:25:07 TrackingId:0adf4d97a2f3429dafceda129ef0ec61_G23, SystemTracker:gateway5, Timestamp:2025-10-27T08:25:07 +2025-10-27 17:25:07,347 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:25:38,895 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:25:38,897 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:25:38,980 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:25:38,999 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:38,999 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:39,000 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:39,000 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:25:39,000 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,000 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:25:39,000 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,000 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:25:39,011 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:39,062 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:39,114 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:25:39,166 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,166 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:25:39,217 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,217 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:25:39,217 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:25:39,425 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,781 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:25:39,781 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,781 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:25:39,832 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,883 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:25:39,884 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,884 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:25:39,884 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:25:39,918 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:25:39\nReference:d7335b59-9ab2-448c-a3c7-32d5de05505c\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:25:39 TrackingId:2d5387b1ae804037a005437578728f73_G14, SystemTracker:gateway5, Timestamp:2025-10-27T08:25:39"). +2025-10-27 17:25:39,918 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:25:39 +Reference:d7335b59-9ab2-448c-a3c7-32d5de05505c +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:25:39 TrackingId:2d5387b1ae804037a005437578728f73_G14, SystemTracker:gateway5, Timestamp:2025-10-27T08:25:39 +2025-10-27 17:25:39,918 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:26:10,659 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:26:10,660 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:26:10,722 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:26:10,739 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:10,739 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:10,739 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:10,740 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:26:10,740 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:10,740 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:26:10,740 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:10,740 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:26:10,747 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:10,798 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:10,850 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:26:10,901 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:10,902 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:26:10,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:10,954 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:26:10,954 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:26:11,162 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:11,668 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:26:11,668 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:11,668 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:26:11,719 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:11,770 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:26:11,771 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:11,772 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:26:11,772 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:11,783 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:26:11\nReference:429c5410-e87d-4d2a-b077-0002e7b28aba\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:26:11 TrackingId:19cfb07b94c442ecb31a874964179984_G4, SystemTracker:gateway5, Timestamp:2025-10-27T08:26:11"). +2025-10-27 17:26:11,783 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:26:11 +Reference:429c5410-e87d-4d2a-b077-0002e7b28aba +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:26:11 TrackingId:19cfb07b94c442ecb31a874964179984_G4, SystemTracker:gateway5, Timestamp:2025-10-27T08:26:11 +2025-10-27 17:26:11,783 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:26:46,578 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:26:46,579 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:26:46,632 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:26:46,647 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:46,647 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:46,647 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:46,647 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:26:46,647 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:46,647 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:26:46,647 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:46,647 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:26:46,657 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:46,709 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:46,759 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:26:46,812 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:46,813 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:26:46,864 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:46,865 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:26:46,865 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:26:47,074 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:47,664 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:26:47,664 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:47,664 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:26:47,717 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:47,769 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:47,769 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:26:47,769 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:47,769 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:26:47,770 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:26:47,770 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:47,770 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:26:47,770 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:26:47,770 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:47,770 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:26:47,770 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:47,770 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:26:47,770 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:26:47,822 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:26:47\nReference:110eca0a-d700-4dce-a598-7d1b4186a7d3\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:26:47 TrackingId:2db4ea4d3b884c3bb8a04276ccde8de5_G19, SystemTracker:gateway5, Timestamp:2025-10-27T08:26:47"). +2025-10-27 17:26:47,822 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:26:47 +Reference:110eca0a-d700-4dce-a598-7d1b4186a7d3 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:26:47 TrackingId:2db4ea4d3b884c3bb8a04276ccde8de5_G19, SystemTracker:gateway5, Timestamp:2025-10-27T08:26:47 +2025-10-27 17:26:47,823 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:27:18,306 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:27:18,308 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:27:18,371 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:27:18,385 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:18,386 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:18,386 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:18,386 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:27:18,387 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:18,387 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:27:18,387 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:18,387 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:27:18,396 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:18,449 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:18,502 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:27:18,554 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:18,554 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:27:18,606 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:18,606 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:27:18,606 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:27:18,817 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:19,327 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:27:19,327 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:19,327 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:27:19,380 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:19,432 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:27:19,433 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:19,442 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:27:18\nReference:25ba3831-d8c9-400f-b326-e9d97b6eeb2b\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:27:19 TrackingId:c21990b6bc5e4c9fb9a33aaaf677ddcd_G8, SystemTracker:gateway5, Timestamp:2025-10-27T08:27:19"). +2025-10-27 17:27:19,442 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:27:18 +Reference:25ba3831-d8c9-400f-b326-e9d97b6eeb2b +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:27:19 TrackingId:c21990b6bc5e4c9fb9a33aaaf677ddcd_G8, SystemTracker:gateway5, Timestamp:2025-10-27T08:27:19 +2025-10-27 17:27:19,442 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:27:52,011 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:27:52,012 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:27:52,076 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:27:52,095 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:52,096 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:52,096 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:52,096 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:27:52,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:52,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:27:52,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:52,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:27:52,109 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:52,161 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:52,214 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:27:52,266 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:52,267 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:27:52,319 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:52,319 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:27:52,319 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:27:52,530 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:52,942 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:27:52,942 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:52,942 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:27:52,994 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:53,047 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:53,047 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:27:53,048 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:27:53,101 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:27:52\nReference:18ccf336-ecc1-40b4-a0ea-b1870e8c4b99\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:27:52 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T08:27:52"). +2025-10-27 17:27:53,101 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:27:52 +Reference:18ccf336-ecc1-40b4-a0ea-b1870e8c4b99 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:27:52 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T08:27:52 +2025-10-27 17:27:53,101 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:28:25,420 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:28:25,421 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:28:25,484 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:28:25,508 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:25,508 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:25,509 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:25,509 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:28:25,509 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:25,510 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:28:25,510 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:25,510 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:28:25,517 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:25,570 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:25,623 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:28:25,676 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:25,676 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:28:25,727 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:25,728 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:28:25,728 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:28:25,937 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:26,490 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:28:26,491 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:26,491 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:28:26,542 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:26,594 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:26,594 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:28:26,594 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:26,594 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:28:26,594 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:28:26,595 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:26,595 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:26,595 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:28:26,595 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:26,595 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:28:26,595 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:26,595 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:28:26,595 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:26,604 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:28:26\nReference:cfcc2d75-b0eb-491f-932e-9fa41b3f7f84\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:28:26 TrackingId:c21990b6bc5e4c9fb9a33aaaf677ddcd_G8, SystemTracker:gateway5, Timestamp:2025-10-27T08:28:26"). +2025-10-27 17:28:26,604 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:28:26 +Reference:cfcc2d75-b0eb-491f-932e-9fa41b3f7f84 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:28:26 TrackingId:c21990b6bc5e4c9fb9a33aaaf677ddcd_G8, SystemTracker:gateway5, Timestamp:2025-10-27T08:28:26 +2025-10-27 17:28:26,604 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:28:58,268 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:28:58,269 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:28:58,325 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:28:58,360 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:58,360 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:58,361 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:58,361 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:28:58,361 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:58,361 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:28:58,362 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:58,362 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:28:58,371 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:58,423 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:58,475 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:28:58,527 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:58,527 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:28:58,580 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:58,580 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:28:58,580 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:28:58,788 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:59,296 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:28:59,297 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:59,297 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:28:59,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:59,403 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:59,403 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:28:59,403 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:59,403 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:28:59,404 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:28:59,404 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:59,404 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:28:59,404 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:28:59,404 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:59,404 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:28:59,404 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:59,404 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:28:59,404 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:28:59,455 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:28:58\nReference:4ce17a5c-0870-4ff5-8a22-3e1f34ae08a7\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:28:59 TrackingId:f95a8629f37b4a79bf39489e5eb57624_G17, SystemTracker:gateway5, Timestamp:2025-10-27T08:28:59"). +2025-10-27 17:28:59,456 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:28:58 +Reference:4ce17a5c-0870-4ff5-8a22-3e1f34ae08a7 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:28:59 TrackingId:f95a8629f37b4a79bf39489e5eb57624_G17, SystemTracker:gateway5, Timestamp:2025-10-27T08:28:59 +2025-10-27 17:28:59,456 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:29:28,401 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:29:28,402 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:29:28,472 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:29:28,490 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:29:28,491 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:29:28,491 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:29:28,491 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:29:28,492 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:28,492 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:29:28,492 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:28,492 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:29:28,511 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:29:28,562 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:29:28,613 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:29:28,663 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:28,664 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:29:28,715 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:28,715 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:29:28,715 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:29:28,924 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:29,466 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:29:29,466 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:29,466 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:29:29,518 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:29,570 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:29,570 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:29:29,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:29:29,596 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:29:28\nReference:ba5dd47e-05bd-4c2e-97e6-50e4b5c2ef8d\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:29:29 TrackingId:7780cdb846ba4e6cba3365451c46feac_G1, SystemTracker:gateway5, Timestamp:2025-10-27T08:29:29"). +2025-10-27 17:29:29,596 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:29:28 +Reference:ba5dd47e-05bd-4c2e-97e6-50e4b5c2ef8d +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:29:29 TrackingId:7780cdb846ba4e6cba3365451c46feac_G1, SystemTracker:gateway5, Timestamp:2025-10-27T08:29:29 +2025-10-27 17:29:29,597 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:30:00,053 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:30:00,055 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:30:00,116 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:30:00,135 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:00,136 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:00,136 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:00,136 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:30:00,137 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:00,137 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:30:00,137 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:00,137 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:30:00,145 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:00,197 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:00,250 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:30:00,303 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:00,303 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:30:00,356 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:00,357 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:30:00,357 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:30:00,566 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:01,076 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:30:01,076 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:01,076 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:30:01,128 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:01,181 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:01,181 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:30:01,181 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:01,181 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:30:01,181 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:30:01,182 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:01,182 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:01,182 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:30:01,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:01,182 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:30:01,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:01,182 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:30:01,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:01,234 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:30:00\nReference:36e97561-1d41-4251-b5a0-32c0941faafd\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:30:00 TrackingId:f769f925744446dd9e45cb096a6c56e1_G5, SystemTracker:gateway5, Timestamp:2025-10-27T08:30:00"). +2025-10-27 17:30:01,234 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:30:00 +Reference:36e97561-1d41-4251-b5a0-32c0941faafd +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:30:00 TrackingId:f769f925744446dd9e45cb096a6c56e1_G5, SystemTracker:gateway5, Timestamp:2025-10-27T08:30:00 +2025-10-27 17:30:01,235 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:30:32,621 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:30:32,622 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:30:32,687 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:30:32,714 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:32,714 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:32,714 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:32,714 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:30:32,714 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:32,715 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:30:32,715 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:32,715 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:30:32,731 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:32,781 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:32,831 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:30:32,882 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:32,882 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:30:32,934 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:32,934 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:30:32,934 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:30:33,141 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:33,670 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:30:33,670 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:33,670 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:30:33,723 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:33,773 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:33,773 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:30:33,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:30:33,811 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:30:33\nReference:542e7df0-de85-49d9-96cf-f4bd84142688\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:30:33 TrackingId:06c570c65f7447118cf675bb483fbbdb_G15, SystemTracker:gateway5, Timestamp:2025-10-27T08:30:33"). +2025-10-27 17:30:33,811 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:30:33 +Reference:542e7df0-de85-49d9-96cf-f4bd84142688 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:30:33 TrackingId:06c570c65f7447118cf675bb483fbbdb_G15, SystemTracker:gateway5, Timestamp:2025-10-27T08:30:33 +2025-10-27 17:30:33,812 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:31:04,745 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:31:04,747 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:31:04,807 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:31:04,827 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:04,827 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:04,828 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:04,828 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:31:04,828 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:04,829 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:31:04,829 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:04,829 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:31:04,845 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:04,897 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:04,949 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:31:05,002 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,002 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:31:05,052 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,052 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:31:05,053 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:31:05,260 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,667 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:31:05,667 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,667 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:31:05,720 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,773 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,773 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:31:05,773 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,773 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:31:05,773 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:31:05,774 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:05,774 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:05,774 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:31:05,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,774 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:31:05,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,774 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:31:05,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:05,827 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:31:05\nReference:2cc47770-e0b6-400e-b9f6-d3499d972df1\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:31:05 TrackingId:9eadb900326f4de9b7e6307faca09dc8_G12, SystemTracker:gateway5, Timestamp:2025-10-27T08:31:05"). +2025-10-27 17:31:05,828 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:31:05 +Reference:2cc47770-e0b6-400e-b9f6-d3499d972df1 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:31:05 TrackingId:9eadb900326f4de9b7e6307faca09dc8_G12, SystemTracker:gateway5, Timestamp:2025-10-27T08:31:05 +2025-10-27 17:31:05,828 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:31:39,484 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:31:39,485 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:31:39,542 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:31:39,561 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:39,561 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:39,561 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:39,561 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:31:39,562 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:39,562 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:31:39,562 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:39,562 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:31:39,572 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:39,624 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:39,674 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:31:39,726 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:39,726 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:31:39,778 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:39,778 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:31:39,778 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:31:39,985 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:40,538 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:31:40,538 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:40,538 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:31:40,588 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:31:40,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:31:40,651 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:31:40\nReference:31589455-3f29-41ed-a4b2-5ee8d9ef027b\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:31:40 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:31:40"). +2025-10-27 17:31:40,651 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:31:40 +Reference:31589455-3f29-41ed-a4b2-5ee8d9ef027b +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:31:40 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:31:40 +2025-10-27 17:31:40,651 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:32:10,302 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:32:10,304 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:32:10,363 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:32:10,379 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:10,379 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:10,379 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:10,380 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:32:10,380 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:10,380 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:32:10,380 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:10,380 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:32:10,390 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:10,440 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:10,492 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:32:10,543 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:10,543 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:32:10,594 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:10,594 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:32:10,594 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:32:10,799 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:11,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:32:11,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:11,167 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:32:11,218 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:11,268 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:11,269 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:32:11,270 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:11,319 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:32:10\nReference:bb8d3317-a617-4785-9fc7-aa0922b51fbe\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:32:11 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T08:32:11"). +2025-10-27 17:32:11,319 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:32:10 +Reference:bb8d3317-a617-4785-9fc7-aa0922b51fbe +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:32:11 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T08:32:11 +2025-10-27 17:32:11,319 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:32:40,876 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:32:40,878 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:32:40,936 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:32:40,948 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:40,949 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:40,949 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:40,949 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:32:40,950 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:40,950 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:32:40,950 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:40,950 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:32:40,957 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:41,009 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:41,060 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:32:41,110 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,111 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:32:41,161 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,161 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:32:41,162 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:32:41,368 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,773 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:32:41,773 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,773 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:32:41,825 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,876 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:32:41,877 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:32:41,896 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:32:41\nReference:ac2f6e71-49d0-435d-8e1a-2525507ea519\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:32:41 TrackingId:339fafadcaf7418d93c474182a100c42_G9, SystemTracker:gateway5, Timestamp:2025-10-27T08:32:41"). +2025-10-27 17:32:41,897 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:32:41 +Reference:ac2f6e71-49d0-435d-8e1a-2525507ea519 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:32:41 TrackingId:339fafadcaf7418d93c474182a100c42_G9, SystemTracker:gateway5, Timestamp:2025-10-27T08:32:41 +2025-10-27 17:32:41,897 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:33:13,274 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:33:13,275 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:33:13,338 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:33:13,355 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:13,355 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:13,355 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:13,355 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:33:13,356 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:13,356 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:33:13,356 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:13,356 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:33:13,367 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:13,418 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:13,469 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:33:13,520 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:13,520 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:33:13,571 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:13,571 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:33:13,572 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:33:13,779 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:14,228 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:33:14,228 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:14,228 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:33:14,280 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:14,332 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:14,332 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:33:14,332 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:14,332 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:33:14,333 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:33:14,333 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:14,333 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:14,333 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:33:14,333 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:14,333 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:33:14,333 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:14,333 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:33:14,333 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:14,351 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:33:13\nReference:374468d3-4ca6-4e31-aa3e-2fe53943bae3\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:33:14 TrackingId:abc7790fee3345ddbf6f7e0656ad12ab_G13, SystemTracker:gateway5, Timestamp:2025-10-27T08:33:14"). +2025-10-27 17:33:14,352 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:33:13 +Reference:374468d3-4ca6-4e31-aa3e-2fe53943bae3 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:33:14 TrackingId:abc7790fee3345ddbf6f7e0656ad12ab_G13, SystemTracker:gateway5, Timestamp:2025-10-27T08:33:14 +2025-10-27 17:33:14,352 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:33:44,734 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:33:44,735 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:33:44,797 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:33:44,825 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:44,825 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:44,825 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:44,826 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:33:44,826 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:44,826 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:33:44,826 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:44,826 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:33:44,836 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:44,888 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:44,939 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:33:44,991 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:44,991 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:33:45,042 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:45,042 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:33:45,043 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:33:45,250 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:45,656 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:33:45,656 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:45,656 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:33:45,708 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:33:45,759 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:33:45,810 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:33:45\nReference:b0dfff12-ae7b-45f1-9e76-3ab2957bcfd9\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:33:45 TrackingId:2db4ea4d3b884c3bb8a04276ccde8de5_G19, SystemTracker:gateway5, Timestamp:2025-10-27T08:33:45"). +2025-10-27 17:33:45,810 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:33:45 +Reference:b0dfff12-ae7b-45f1-9e76-3ab2957bcfd9 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:33:45 TrackingId:2db4ea4d3b884c3bb8a04276ccde8de5_G19, SystemTracker:gateway5, Timestamp:2025-10-27T08:33:45 +2025-10-27 17:33:45,811 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:34:14,785 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:34:14,786 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:34:14,848 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:34:14,866 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:14,866 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:14,866 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:14,867 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:34:14,867 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:14,867 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:34:14,867 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:14,867 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:34:14,880 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:14,931 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:14,981 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:34:15,033 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,033 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:34:15,084 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,085 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:34:15,085 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:34:15,289 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,675 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:34:15,675 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,676 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:34:15,727 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,778 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,778 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:34:15,779 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:15,805 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:34:15\nReference:12133a43-d035-4e65-bd6e-9082be2ed6e1\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:34:15 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:34:15"). +2025-10-27 17:34:15,805 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:34:15 +Reference:12133a43-d035-4e65-bd6e-9082be2ed6e1 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:34:15 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:34:15 +2025-10-27 17:34:15,805 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:34:39,006 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:34:39,831 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:34:40,681 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:57047 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:34:40,737 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:34:46,601 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:34:46,603 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:34:46,688 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:34:46,709 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:46,709 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:46,710 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:46,710 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:34:46,711 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:46,711 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:34:46,711 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:46,711 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:34:46,726 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:46,777 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:46,828 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:34:46,880 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:46,880 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:34:46,932 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:46,932 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:34:46,932 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:34:47,139 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:47,574 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:34:47,574 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:47,574 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:34:47,624 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:47,674 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:47,674 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:34:47,675 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:47,675 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:34:47,676 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:34:47,676 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:47,676 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:34:47,676 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:34:47,676 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:47,676 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:34:47,676 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:47,676 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:34:47,676 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:34:47,724 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:34:47\nReference:48ff0b35-d710-4056-bb99-60e8c1c5f88a\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:34:47 TrackingId:489faaafbfef47bfab375bb6b58fa25a_G22, SystemTracker:gateway5, Timestamp:2025-10-27T08:34:47"). +2025-10-27 17:34:47,724 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:34:47 +Reference:48ff0b35-d710-4056-bb99-60e8c1c5f88a +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:34:47 TrackingId:489faaafbfef47bfab375bb6b58fa25a_G22, SystemTracker:gateway5, Timestamp:2025-10-27T08:34:47 +2025-10-27 17:34:47,725 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:35:21,851 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:35:21,853 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:35:21,915 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:35:21,934 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:21,934 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:21,935 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:21,935 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:35:21,936 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:21,936 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:35:21,936 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:21,936 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:35:21,946 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:21,998 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:22,049 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:35:22,100 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,101 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:35:22,151 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,152 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:35:22,152 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:35:22,359 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,809 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:35:22,809 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,809 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:35:22,861 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,911 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:35:22,912 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:22,921 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:35:22\nReference:629e72b8-d102-418d-801c-c0b1d3a7d154\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:35:22 TrackingId:88b921350b3b4ad99db87dda745072ed_G11, SystemTracker:gateway5, Timestamp:2025-10-27T08:35:22"). +2025-10-27 17:35:22,921 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:35:22 +Reference:629e72b8-d102-418d-801c-c0b1d3a7d154 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:35:22 TrackingId:88b921350b3b4ad99db87dda745072ed_G11, SystemTracker:gateway5, Timestamp:2025-10-27T08:35:22 +2025-10-27 17:35:22,921 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:35:26,036 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:35:26,049 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:57211 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:35:26,089 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:35:54,441 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:35:54,442 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:35:54,488 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:35:54,504 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:54,504 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:54,504 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:54,504 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:35:54,504 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:54,504 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:35:54,504 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:54,504 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:35:54,510 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:54,560 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:54,611 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:35:54,662 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:54,662 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:35:54,714 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:54,714 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:35:54,714 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:35:54,919 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:55,371 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:35:55,371 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:55,371 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:35:55,423 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:35:55,474 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:35:55,513 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:35:55\nReference:e488b0e9-316e-4e5c-b985-f9af3ff22d1b\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:35:55 TrackingId:9eadb900326f4de9b7e6307faca09dc8_G12, SystemTracker:gateway5, Timestamp:2025-10-27T08:35:55"). +2025-10-27 17:35:55,513 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:35:55 +Reference:e488b0e9-316e-4e5c-b985-f9af3ff22d1b +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:35:55 TrackingId:9eadb900326f4de9b7e6307faca09dc8_G12, SystemTracker:gateway5, Timestamp:2025-10-27T08:35:55 +2025-10-27 17:35:55,513 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:36:29,584 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:36:29,585 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:36:29,652 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:36:29,668 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:36:29,669 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:36:29,669 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:36:29,669 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:36:29,669 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:29,669 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:36:29,669 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:29,669 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:36:29,681 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:36:29,732 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:36:29,782 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:36:29,833 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:29,833 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:36:29,885 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:29,885 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:36:29,885 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:36:30,092 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:30,598 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:36:30,598 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:30,598 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:36:30,649 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:30,701 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:30,701 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:36:30,702 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:36:30,755 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:36:30\nReference:747ffb6b-333f-49e4-89ef-dcf0915015c5\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:36:30 TrackingId:316c6011e4634786ad54b9253b21e381_G26, SystemTracker:gateway5, Timestamp:2025-10-27T08:36:30"). +2025-10-27 17:36:30,755 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:36:30 +Reference:747ffb6b-333f-49e4-89ef-dcf0915015c5 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:36:30 TrackingId:316c6011e4634786ad54b9253b21e381_G26, SystemTracker:gateway5, Timestamp:2025-10-27T08:36:30 +2025-10-27 17:36:30,755 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:37:02,719 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:37:02,719 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:37:02,772 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:37:02,785 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:02,785 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:02,786 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:02,786 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:37:02,786 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:02,786 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:37:02,786 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:02,786 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:37:02,800 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:02,852 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:02,903 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:37:02,955 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:02,955 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:37:03,007 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:03,007 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:37:03,007 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:37:03,212 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:03,776 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:37:03,776 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:03,776 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:37:03,828 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:03,879 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:03,879 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:37:03,880 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:03,880 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:37:03,880 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:37:03,880 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:03,880 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:03,880 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:37:03,881 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:03,881 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:37:03,881 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:03,881 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:37:03,881 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:03,894 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:37:03\nReference:661da0a6-cbe2-4bb6-90ee-18e69a5a8092\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:37:03 TrackingId:075ba35328594c068746f9d96f6f4a63_G20, SystemTracker:gateway5, Timestamp:2025-10-27T08:37:03"). +2025-10-27 17:37:03,895 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:37:03 +Reference:661da0a6-cbe2-4bb6-90ee-18e69a5a8092 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:37:03 TrackingId:075ba35328594c068746f9d96f6f4a63_G20, SystemTracker:gateway5, Timestamp:2025-10-27T08:37:03 +2025-10-27 17:37:03,895 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:37:32,727 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:37:32,728 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:37:32,792 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:37:32,809 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:32,810 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:32,810 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:32,810 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:37:32,811 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:32,811 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:37:32,811 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:32,811 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:37:32,820 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:32,872 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:32,923 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:37:32,974 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:32,975 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:37:33,026 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:33,026 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:37:33,026 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:37:33,231 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:33,735 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:37:33,735 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:33,735 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:37:33,786 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:33,838 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:37:33,839 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:37:33,849 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:37:33\nReference:16d521a3-be37-4763-a140-5431558c278d\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:37:33 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:37:33"). +2025-10-27 17:37:33,849 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:37:33 +Reference:16d521a3-be37-4763-a140-5431558c278d +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:37:33 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T08:37:33 +2025-10-27 17:37:33,849 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:37:36,799 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:37:36,827 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:57625 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:37:36,864 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:38:07,314 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:38:07,315 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:38:07,378 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:38:07,394 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:07,395 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:07,395 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:07,395 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:38:07,396 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:07,396 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:38:07,396 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:07,396 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:38:07,403 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:07,454 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:07,506 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:38:07,556 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:07,556 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:38:07,609 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:07,609 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:38:07,609 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:38:07,817 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:08,192 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:38:08,192 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:08,192 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:38:08,244 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:38:08,295 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:08,333 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:38:07\nReference:5b1f1d5f-43f9-4917-8a9e-b7c10829d400\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:38:08 TrackingId:7780cdb846ba4e6cba3365451c46feac_G1, SystemTracker:gateway5, Timestamp:2025-10-27T08:38:08"). +2025-10-27 17:38:08,333 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:38:07 +Reference:5b1f1d5f-43f9-4917-8a9e-b7c10829d400 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:38:08 TrackingId:7780cdb846ba4e6cba3365451c46feac_G1, SystemTracker:gateway5, Timestamp:2025-10-27T08:38:08 +2025-10-27 17:38:08,333 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:38:42,166 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:38:42,167 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:38:42,234 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:38:42,254 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:42,254 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:42,254 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:42,255 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:38:42,255 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:42,255 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:38:42,256 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:42,256 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:38:42,264 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:42,314 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:42,365 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:38:42,416 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:42,416 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:38:42,467 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:42,467 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:38:42,467 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:38:42,702 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:43,123 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:38:43,123 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:43,123 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:38:43,174 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:43,225 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:43,225 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:38:43,225 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:43,225 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:38:43,225 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:38:43,226 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:43,226 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:38:43,226 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:38:43,226 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:43,226 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:38:43,226 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:43,226 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:38:43,226 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:38:43,232 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:38:42\nReference:38e369d4-f51e-4ad1-8250-01daf63d2fc9\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:38:42 TrackingId:f95a8629f37b4a79bf39489e5eb57624_G17, SystemTracker:gateway5, Timestamp:2025-10-27T08:38:42"). +2025-10-27 17:38:43,232 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:38:42 +Reference:38e369d4-f51e-4ad1-8250-01daf63d2fc9 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:38:42 TrackingId:f95a8629f37b4a79bf39489e5eb57624_G17, SystemTracker:gateway5, Timestamp:2025-10-27T08:38:42 +2025-10-27 17:38:43,232 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:39:16,089 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:39:16,090 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:39:16,149 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:39:16,171 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:16,172 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:16,172 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:16,172 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:39:16,172 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:16,172 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:39:16,173 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:16,173 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:39:16,184 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:16,235 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:16,286 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:39:16,338 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:16,338 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:39:16,390 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:16,390 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:39:16,390 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:39:16,596 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:17,100 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:39:17,100 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:17,100 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:39:17,151 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:17,203 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:17,204 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:39:17,204 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:17,204 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:39:17,204 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:39:17,204 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:17,204 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:17,205 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:39:17,205 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:17,205 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:39:17,205 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:17,205 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:39:17,205 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:17,256 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:39:16\nReference:d0b59f11-7ecd-4827-a3f5-4e7fbf3e39d9\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:39:16 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:39:16"). +2025-10-27 17:39:17,257 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:39:16 +Reference:d0b59f11-7ecd-4827-a3f5-4e7fbf3e39d9 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:39:16 TrackingId:5e125cadc6744ba5a28faf87bf977e94_G24, SystemTracker:gateway5, Timestamp:2025-10-27T08:39:16 +2025-10-27 17:39:17,257 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:39:47,870 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:39:47,871 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:39:47,931 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:39:47,947 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:47,948 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:47,948 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:47,948 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:39:47,948 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:47,948 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:39:47,948 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:47,948 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:39:47,961 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:48,012 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:48,063 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:39:48,114 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,114 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:39:48,165 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,165 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:39:48,165 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:39:48,369 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,678 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:39:48,678 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,678 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:39:48,730 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,782 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,782 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:39:48,782 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,782 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:39:48,782 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:39:48,782 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:48,782 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:39:48,783 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:39:48,783 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,783 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:39:48,783 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,783 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:39:48,783 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:39:48,788 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:39:48\nReference:73ca1c7e-ded0-4f54-aa8a-128d3762ec72\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:39:48 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:39:48"). +2025-10-27 17:39:48,789 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:39:48 +Reference:73ca1c7e-ded0-4f54-aa8a-128d3762ec72 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:39:48 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T08:39:48 +2025-10-27 17:39:48,789 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:40:19,284 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:40:19,286 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:40:19,342 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:40:19,363 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:19,363 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:19,363 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:19,363 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:40:19,363 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:19,364 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:40:19,364 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:19,364 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:40:19,372 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:19,423 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:19,476 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:40:19,527 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:19,527 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:40:19,578 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:19,578 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:40:19,578 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:40:19,782 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:20,285 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 17:40:20,286 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:20,286 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 17:40:20,337 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:40:20,388 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:20,389 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:40:20,389 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:20,411 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:40:19\nReference:9007466e-9139-4ee5-9470-97fffbeafb74\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T08:40:20 TrackingId:e4d546972f124ac3bb3203de243ad198_G16, SystemTracker:gateway5, Timestamp:2025-10-27T08:40:20"). +2025-10-27 17:40:20,411 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T08:40:19 +Reference:9007466e-9139-4ee5-9470-97fffbeafb74 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T08:40:20 TrackingId:e4d546972f124ac3bb3203de243ad198_G16, SystemTracker:gateway5, Timestamp:2025-10-27T08:40:20 +2025-10-27 17:40:20,411 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 17:40:50,333 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 17:40:50,333 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 17:40:50,396 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 17:40:50,416 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:50,416 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:50,416 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:50,417 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:40:50,417 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:50,417 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:40:50,417 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:50,417 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:40:50,426 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:50,477 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 17:40:50,528 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 17:40:50,579 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:50,579 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 17:40:50,630 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:50,630 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 17:40:50,630 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 17:40:50,835 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:40:50,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 17:41:22,149 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:41:22,174 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:58482 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:41:22,236 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:41:23,325 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 17:41:23,345 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:58492 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-27 17:41:23,405 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 17:47:23,200 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-27 18:22:41,737 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 18:22:41,737 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 18:22:41,737 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 18:22:41,738 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 18:22:41,738 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 18:22:41,738 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 18:22:41,738 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 18:22:41,738 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 18:22:41,738 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 18:22:41,738 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 18:22:41,738 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 18:22:41,738 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 18:22:42,179 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 18:22:42,195 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 18:22:42,195 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 18:22:42,196 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 18:22:42,196 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 18:22:42,196 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 18:22:42,197 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 18:22:42,197 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 18:22:42,197 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 18:22:42,204 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 18:22:42,255 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 18:22:42,307 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 18:22:42,360 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 18:22:42,360 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 18:22:42,411 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 18:22:42,411 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 18:22:42,411 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 18:22:42,622 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 18:22:42,632 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:11:12,847 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:11:12,914 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 19:11:12,927 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:11:12,927 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:11:12,927 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:11:12,927 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 19:11:12,927 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:11:12,927 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 19:11:12,927 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:11:12,927 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 19:11:12,937 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:11:12,987 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:11:13,039 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 19:11:13,089 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:11:13,090 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 19:11:13,142 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:11:13,143 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 19:11:13,143 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 19:11:13,349 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:11:13,358 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 19:50:38,210 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:50:38,265 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 19:50:38,278 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:50:38,278 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:50:38,278 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:50:38,278 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 19:50:38,278 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:50:38,278 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 19:50:38,278 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:50:38,278 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 19:50:38,287 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:50:38,339 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 19:50:38,391 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 19:50:38,442 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:50:38,442 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 19:50:38,494 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:50:38,495 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 19:50:38,495 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 19:50:38,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 19:50:38,716 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 20:42:05,659 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 20:42:05,660 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 20:42:05,660 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 20:42:05,660 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 20:42:05,660 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 20:42:05,660 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 20:42:05,660 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 20:42:05,661 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 20:42:05,661 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 20:42:05,661 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 20:42:05,661 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 20:42:05,661 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 20:42:05,661 - azure.eventhub.aio._transport._pyamqp_transport_async - INFO - 'EHReceiver-9314fc54-85da-4013-b01a-de5b41f95051-partition0' operation has exhausted retry. Last exception: ConnectError('Can not send empty frame due to exception: [Errno 60] Operation timed out\nError condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out'). +2025-10-27 20:42:05,696 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectError('Can not send empty frame due to exception: [Errno 60] Operation timed out\nError condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out'). +2025-10-27 20:42:05,696 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: Can not send empty frame due to exception: [Errno 60] Operation timed out +Error condition: ErrorCondition.SocketError + Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out +2025-10-27 20:42:05,696 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 20:51:37,490 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 20:51:37,490 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 20:51:38,048 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 20:51:38,061 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 20:51:38,061 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 20:51:38,061 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 20:51:38,062 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 20:51:38,063 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 20:51:38,063 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 20:51:38,063 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 20:51:38,063 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 20:51:38,073 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 20:51:38,125 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 20:51:38,178 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 20:51:38,231 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 20:51:38,231 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 20:51:38,284 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 20:51:38,284 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 20:51:38,284 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 20:51:38,495 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 20:51:38,504 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 21:41:18,712 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:41:19,142 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 21:41:19,156 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:41:19,157 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:41:19,157 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:41:19,158 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:41:19,159 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:19,159 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:41:19,159 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:19,159 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:41:19,167 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:41:19,219 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:41:19,271 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:41:19,323 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:19,323 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:41:19,377 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:19,377 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:41:19,378 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 21:41:19,588 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:20,107 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 21:41:20,107 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:20,108 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 21:41:20,160 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:20,213 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:20,213 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:41:20,213 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:20,213 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:41:20,214 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:41:20,214 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:41:20,214 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:41:20,214 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:41:20,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:20,214 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:41:20,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:20,214 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:41:20,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:41:20,223 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T12:41:19\nReference:211e0d93-6a59-4e5c-87b4-647e3f45b65c\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T12:41:19 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T12:41:19"). +2025-10-27 21:41:20,223 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T12:41:19 +Reference:211e0d93-6a59-4e5c-87b4-647e3f45b65c +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T12:41:19 TrackingId:f25c3c181e594ee6874ce5fa6b38c8e6_G25, SystemTracker:gateway5, Timestamp:2025-10-27T12:41:19 +2025-10-27 21:41:20,223 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 21:45:44,804 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 21:45:44,806 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 21:45:45,306 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 21:45:45,324 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:45:45,324 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:45:45,324 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:45:45,325 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:45:45,325 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:45,326 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:45:45,326 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:45,326 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:45:45,333 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:45:45,384 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:45:45,435 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:45:45,487 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:45,487 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:45:45,538 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:45,538 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:45:45,538 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 21:45:45,742 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:46,388 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 21:45:46,388 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:46,388 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 21:45:46,440 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:46,493 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:46,493 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:45:46,494 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:45:46,516 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T12:45:45\nReference:2059f87a-a046-4cfd-b40a-2192190b1799\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T12:45:46 TrackingId:316c6011e4634786ad54b9253b21e381_G26, SystemTracker:gateway5, Timestamp:2025-10-27T12:45:46"). +2025-10-27 21:45:46,517 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T12:45:45 +Reference:2059f87a-a046-4cfd-b40a-2192190b1799 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T12:45:46 TrackingId:316c6011e4634786ad54b9253b21e381_G26, SystemTracker:gateway5, Timestamp:2025-10-27T12:45:46 +2025-10-27 21:45:46,517 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 21:52:37,550 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 21:52:37,551 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 21:52:38,150 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 21:52:38,167 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:52:38,167 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:52:38,168 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:52:38,168 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:52:38,168 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:38,168 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:52:38,168 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:38,168 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:52:38,181 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:52:38,232 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:52:38,284 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:52:38,337 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:38,337 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:52:38,389 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:38,389 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:52:38,389 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 21:52:38,600 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:38,984 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 21:52:38,984 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:38,985 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 21:52:39,036 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:39,088 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:39,088 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 21:52:39,089 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 21:52:39,119 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T12:52:38\nReference:8957eab8-e34f-4a2b-adbe-055dc09e4f3b\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T12:52:38 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T12:52:38"). +2025-10-27 21:52:39,120 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T12:52:38 +Reference:8957eab8-e34f-4a2b-adbe-055dc09e4f3b +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T12:52:38 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T12:52:38 +2025-10-27 21:52:39,120 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 22:09:27,584 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 22:09:27,585 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 22:09:28,151 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 22:09:28,173 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:09:28,173 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:09:28,173 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:09:28,173 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:09:28,174 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:28,174 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:09:28,174 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:28,174 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:09:28,185 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:09:28,238 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:09:28,290 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:09:28,343 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:28,343 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:09:28,395 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:28,395 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:09:28,395 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 22:09:28,604 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:29,113 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 22:09:29,113 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:29,114 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 22:09:29,164 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:29,216 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:29,216 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:09:29,216 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:29,216 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:09:29,216 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:09:29,217 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:09:29,217 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:09:29,217 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:09:29,217 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:29,217 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:09:29,217 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:29,217 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:09:29,217 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:09:29,254 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T13:09:28\nReference:9149b2ea-4b95-4fb0-a36c-5ba5b045d7ce\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T13:09:28 TrackingId:daf94f96845d4a4c8f204bc24deb4033_G28, SystemTracker:gateway5, Timestamp:2025-10-27T13:09:28"). +2025-10-27 22:09:29,254 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T13:09:28 +Reference:9149b2ea-4b95-4fb0-a36c-5ba5b045d7ce +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T13:09:28 TrackingId:daf94f96845d4a4c8f204bc24deb4033_G28, SystemTracker:gateway5, Timestamp:2025-10-27T13:09:28 +2025-10-27 22:09:29,254 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 22:25:29,429 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 22:25:29,430 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 22:25:30,037 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 22:25:30,055 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:25:30,055 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:25:30,056 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:25:30,056 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:25:30,056 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:30,056 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:25:30,056 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:30,056 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:25:30,068 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:25:30,120 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:25:30,172 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:25:30,223 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:30,223 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:25:30,276 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:30,276 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:25:30,276 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 22:25:30,484 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:30,992 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 22:25:30,992 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:30,992 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 22:25:31,043 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:31,095 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:31,095 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:25:31,095 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:31,095 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:25:31,095 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:25:31,096 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:25:31,096 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:25:31,096 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:25:31,096 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:31,096 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:25:31,096 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:31,096 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:25:31,096 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:25:31,141 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T13:25:30\nReference:504cae3f-5b78-49e6-b838-3abab826cab3\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T13:25:30 TrackingId:e604fa628a3745c0903101aa426f29e8_G29, SystemTracker:gateway5, Timestamp:2025-10-27T13:25:30"). +2025-10-27 22:25:31,141 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T13:25:30 +Reference:504cae3f-5b78-49e6-b838-3abab826cab3 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T13:25:30 TrackingId:e604fa628a3745c0903101aa426f29e8_G29, SystemTracker:gateway5, Timestamp:2025-10-27T13:25:30 +2025-10-27 22:25:31,141 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 22:40:32,413 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 22:40:32,415 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 22:40:33,033 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 22:40:33,053 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:40:33,053 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:40:33,053 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:40:33,053 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:40:33,054 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,054 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:40:33,054 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,054 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:40:33,075 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:40:33,125 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:40:33,175 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:40:33,226 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,226 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:40:33,279 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,279 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:40:33,279 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 22:40:33,485 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,865 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 22:40:33,865 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,865 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 22:40:33,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,971 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,971 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:40:33,971 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,971 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:40:33,971 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:40:33,971 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:40:33,971 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:40:33,972 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:40:33,972 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,972 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:40:33,972 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,972 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:40:33,972 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:40:33,980 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T13:40:33\nReference:1c90368b-c7d3-41a5-a383-ededfadff855\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T13:40:33 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T13:40:33"). +2025-10-27 22:40:33,980 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T13:40:33 +Reference:1c90368b-c7d3-41a5-a383-ededfadff855 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T13:40:33 TrackingId:6176201e8cd24cb09d6c3de4cf80bc5d_G3, SystemTracker:gateway5, Timestamp:2025-10-27T13:40:33 +2025-10-27 22:40:33,981 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 22:41:02,419 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 22:41:02,420 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 22:41:02,477 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 22:41:02,492 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:41:02,492 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:41:02,492 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:41:02,492 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:41:02,492 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:02,493 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:41:02,493 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:02,493 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:41:02,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:41:02,553 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:41:02,605 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:41:02,657 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:02,657 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:41:02,710 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:02,710 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:41:02,710 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 22:41:02,919 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:03,314 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 22:41:03,314 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:03,314 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 22:41:03,366 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:03,419 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:03,419 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:41:03,419 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:41:03,420 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:41:03,459 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T13:41:02\nReference:f32d6b54-4267-4908-92d4-c800a430d977\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T13:41:03 TrackingId:fd3e7ace976743418ae7f51e4e651bc4_G30, SystemTracker:gateway5, Timestamp:2025-10-27T13:41:03"). +2025-10-27 22:41:03,460 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T13:41:02 +Reference:f32d6b54-4267-4908-92d4-c800a430d977 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T13:41:03 TrackingId:fd3e7ace976743418ae7f51e4e651bc4_G30, SystemTracker:gateway5, Timestamp:2025-10-27T13:41:03 +2025-10-27 22:41:03,460 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 22:58:28,391 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-27 22:58:28,392 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 22:58:28,991 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 22:58:29,007 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:58:29,007 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:58:29,008 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:58:29,008 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:58:29,009 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:58:29,009 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:58:29,009 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:58:29,010 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:58:29,020 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:58:29,073 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 22:58:29,125 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 22:58:29,178 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:58:29,178 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 22:58:29,231 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:58:29,231 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 22:58:29,231 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 22:58:29,438 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 22:58:29,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 23:48:20,358 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 23:48:20,358 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 23:48:20,358 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 23:48:20,359 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 23:48:20,359 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 23:48:20,359 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 23:48:20,359 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 23:48:20,359 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 23:48:20,359 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 23:48:20,359 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 23:48:20,359 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-27 23:48:20,360 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 23:48:20,982 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 23:48:21,003 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 23:48:21,004 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 23:48:21,004 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 23:48:21,004 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 23:48:21,005 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 23:48:21,005 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 23:48:21,005 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 23:48:21,005 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 23:48:21,013 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 23:48:21,065 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 23:48:21,118 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 23:48:21,169 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 23:48:21,170 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 23:48:21,221 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 23:48:21,221 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 23:48:21,221 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 23:48:21,429 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 23:48:21,441 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 00:38:09,916 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 00:38:09,916 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 00:38:09,916 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 00:38:09,916 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 00:38:09,916 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 00:38:09,917 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 00:38:09,917 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 00:38:09,917 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 00:38:09,917 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 00:38:09,917 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 00:38:09,917 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 00:38:09,917 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 00:38:10,058 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 00:38:10,076 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 00:38:10,076 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 00:38:10,076 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 00:38:10,076 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 00:38:10,076 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 00:38:10,076 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 00:38:10,077 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 00:38:10,077 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 00:38:10,085 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 00:38:10,057 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 00:38:10,109 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 00:38:10,161 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 00:38:10,161 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 00:38:10,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 00:38:10,214 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 00:38:10,215 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 00:38:10,421 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 00:38:10,433 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 01:28:56,919 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 01:28:57,038 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 01:28:57,053 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 01:28:57,053 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 01:28:57,053 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 01:28:57,054 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 01:28:57,054 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 01:28:57,054 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 01:28:57,054 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 01:28:57,054 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 01:28:57,062 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 01:28:57,114 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 01:28:57,165 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 01:28:57,215 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 01:28:57,215 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 01:28:57,265 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 01:28:57,265 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 01:28:57,265 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 01:28:57,473 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 01:28:57,484 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._cbs_async - INFO - Token will expire soon - attempting to refresh. +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 02:25:00,918 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 02:25:00,918 - azure.eventhub.aio._transport._pyamqp_transport_async - INFO - 'EHReceiver-6bb7582b-6a80-4a48-8707-d448a3edf5c5-partition0' operation has exhausted retry. Last exception: ConnectError('Can not send empty frame due to exception: [Errno 60] Operation timed out\nError condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out'). +2025-10-28 02:25:00,944 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectError('Can not send empty frame due to exception: [Errno 60] Operation timed out\nError condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out'). +2025-10-28 02:25:00,944 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: Can not send empty frame due to exception: [Errno 60] Operation timed out +Error condition: ErrorCondition.SocketError + Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out +2025-10-28 02:25:00,944 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 02:42:24,342 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 02:42:24,342 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 02:42:24,941 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 02:42:24,955 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 02:42:24,956 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 02:42:24,956 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 02:42:24,956 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 02:42:24,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 02:42:24,957 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 02:42:24,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 02:42:24,957 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 02:42:24,968 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 02:42:25,018 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 02:42:25,070 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 02:42:25,122 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 02:42:25,122 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 02:42:25,173 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 02:42:25,173 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 02:42:25,173 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 02:42:25,376 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 02:42:25,629 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 03:33:18,421 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 03:33:18,422 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 03:33:19,036 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 03:33:19,048 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 03:33:19,048 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 03:33:19,049 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 03:33:19,049 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 03:33:19,050 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 03:33:19,050 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 03:33:19,050 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 03:33:19,051 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 03:33:19,059 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 03:33:19,112 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 03:33:19,164 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 03:33:19,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 03:33:19,214 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 03:33:19,266 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 03:33:19,267 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 03:33:19,267 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 03:33:19,473 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 03:33:19,488 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 04:25:20,443 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 04:25:20,443 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 04:25:20,443 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 04:25:20,443 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 04:25:20,443 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 04:25:20,443 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 04:25:20,444 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 04:25:20,444 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 04:25:20,444 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 04:25:20,444 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 04:25:20,444 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 04:25:20,444 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 04:25:21,075 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 04:25:21,091 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 04:25:21,091 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 04:25:21,092 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 04:25:21,092 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 04:25:21,092 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 04:25:21,092 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 04:25:21,092 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 04:25:21,092 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 04:25:21,111 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 04:25:21,163 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 04:25:21,216 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 04:25:21,268 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 04:25:21,268 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 04:25:21,319 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 04:25:21,319 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 04:25:21,319 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 04:25:21,525 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 04:25:21,538 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:16:33,292 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 05:16:33,905 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 05:16:33,921 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 05:16:33,921 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 05:16:33,922 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 05:16:33,922 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 05:16:33,922 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:16:33,922 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 05:16:33,922 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:16:33,922 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 05:16:33,932 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 05:16:33,983 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 05:16:34,034 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 05:16:34,084 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:16:34,085 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 05:16:34,215 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:16:34,216 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 05:16:34,216 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 05:16:34,423 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:16:34,807 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 05:56:20,950 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 05:56:20,950 - azure.eventhub.aio._transport._pyamqp_transport_async - INFO - 'EHReceiver-c2852567-e1a6-41a8-ba73-e269c1e26ae1-partition0' operation has exhausted retry. Last exception: ConnectError('Can not send empty frame due to exception: [Errno 60] Operation timed out\nError condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out'). +2025-10-28 05:56:20,963 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectError('Can not send empty frame due to exception: [Errno 60] Operation timed out\nError condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out'). +2025-10-28 05:56:20,963 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: Can not send empty frame due to exception: [Errno 60] Operation timed out +Error condition: ErrorCondition.SocketError + Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out +2025-10-28 05:56:20,963 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 06:14:08,436 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 06:14:08,437 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 06:14:09,035 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 06:14:09,050 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 06:14:09,050 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 06:14:09,051 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 06:14:09,051 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 06:14:09,051 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 06:14:09,051 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 06:14:09,051 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 06:14:09,051 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 06:14:09,058 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 06:14:09,111 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 06:14:09,163 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 06:14:09,216 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 06:14:09,216 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 06:14:09,268 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 06:14:09,269 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 06:14:09,269 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 06:14:09,475 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 06:14:09,491 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:05:09,575 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:05:09,965 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 07:05:09,979 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:05:09,979 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:05:09,979 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:05:09,979 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 07:05:09,980 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:05:09,980 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 07:05:09,980 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:05:09,980 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 07:05:09,986 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:05:10,039 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:05:10,092 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 07:05:10,144 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:05:10,144 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 07:05:10,197 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:05:10,197 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 07:05:10,197 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 07:05:10,405 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:05:10,675 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 07:41:53,871 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:41:53,927 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 07:41:53,942 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:41:53,942 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:41:53,942 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:41:53,942 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 07:41:53,942 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:41:53,942 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 07:41:53,942 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:41:53,942 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 07:41:53,950 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:41:54,000 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 07:41:54,052 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 07:41:54,102 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:41:54,102 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 07:41:54,154 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:41:54,154 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 07:41:54,154 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 07:41:54,360 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 07:41:54,370 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:30:53,526 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:30:53,900 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 08:30:53,919 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:30:53,919 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:30:53,919 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:30:53,920 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:30:53,920 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:30:53,920 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:30:53,920 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:30:53,920 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:30:53,925 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:30:53,978 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:30:54,029 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:30:54,080 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:30:54,080 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:30:54,133 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:30:54,133 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:30:54,133 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 08:30:54,344 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:30:54,366 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:38:41,498 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:38:41,498 - azure.eventhub.aio._transport._pyamqp_transport_async - INFO - 'EHReceiver-54107879-a768-41cf-a006-e83d5382c7c3-partition0' operation has exhausted retry. Last exception: ConnectError('Can not send empty frame due to exception: [Errno 60] Operation timed out\nError condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out'). +2025-10-28 08:38:41,618 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectError('Can not send empty frame due to exception: [Errno 60] Operation timed out\nError condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out'). +2025-10-28 08:38:41,618 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: Can not send empty frame due to exception: [Errno 60] Operation timed out +Error condition: ErrorCondition.SocketError + Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out +2025-10-28 08:38:41,618 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 08:42:53,244 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 08:42:53,244 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 08:42:53,875 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 08:42:53,900 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:42:53,900 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:42:53,900 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:42:53,901 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:42:53,901 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:42:53,901 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:42:53,901 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:42:53,901 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:42:53,911 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:42:53,964 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:42:54,017 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:42:54,070 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:42:54,070 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:42:54,123 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:42:54,123 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:42:54,123 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 08:42:54,334 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:42:54,355 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:46:05,207 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._link_async - INFO - An error occurred when detaching the link: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._session_async - INFO - An error occurred when ending the session: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._connection_async - INFO - An error occurred when closing the connection: AMQPConnectionError('Error condition: ErrorCondition.SocketError\n Error Description: Can not send empty frame due to exception: [Errno 60] Operation timed out') +2025-10-28 08:46:05,208 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:46:05,390 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 08:46:05,401 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:46:05,401 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:46:05,401 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:46:05,401 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:46:05,401 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:46:05,401 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:46:05,401 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:46:05,401 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:46:05,406 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:46:05,456 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:46:05,507 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:46:05,559 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:46:05,559 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:46:05,609 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:46:05,609 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:46:05,609 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 08:46:05,814 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:46:05,831 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:54:53,357 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61187 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:54:53,392 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:54:59,973 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:54:59,984 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61198 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:00,024 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:55:00,456 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:55:00,466 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61202 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:00,504 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:55:00,671 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:55:00,683 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61206 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:00,727 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:55:00,826 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:55:00,842 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61209 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:00,880 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:55:00,989 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:55:00,999 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61213 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:01,036 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:55:42,677 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:55:42,691 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61257 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:42,733 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:55:42,972 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:55:42,981 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61263 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:43,024 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:55:43,201 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:55:43,213 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61269 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:43,265 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:55:43,411 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:55:43,422 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61273 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:43,464 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:55:43,590 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:55:43,603 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61277 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:55:43,645 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:56:38,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:56:38,168 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:56:38,168 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:56:38,168 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:56:38,168 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:56:38,169 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:56:38,169 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:56:38,169 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:56:38,169 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:56:38,169 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:56:38,169 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:56:38,169 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:56:38,169 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:56:38,169 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:56:38,200 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("New receiver 'ff29a664-39ab-4618-858e-377c93de1643' with higher epoch of '0' is created hence current receiver 'nil' with epoch '' is getting disconnected. If you are recreating the receiver, make sure a higher epoch is used. TrackingId:19df4129000056f4000138fb6900043d_G2_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default, Timestamp:2025-10-27T23:56:38\nError condition: amqp:link:stolen\n Error Description: New receiver 'ff29a664-39ab-4618-858e-377c93de1643' with higher epoch of '0' is created hence current receiver 'nil' with epoch '' is getting disconnected. If you are recreating the receiver, make sure a higher epoch is used. TrackingId:19df4129000056f4000138fb6900043d_G2_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default, Timestamp:2025-10-27T23:56:38"). +2025-10-28 08:56:38,201 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: New receiver 'ff29a664-39ab-4618-858e-377c93de1643' with higher epoch of '0' is created hence current receiver 'nil' with epoch '' is getting disconnected. If you are recreating the receiver, make sure a higher epoch is used. TrackingId:19df4129000056f4000138fb6900043d_G2_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default, Timestamp:2025-10-27T23:56:38 +Error condition: amqp:link:stolen + Error Description: New receiver 'ff29a664-39ab-4618-858e-377c93de1643' with higher epoch of '0' is created hence current receiver 'nil' with epoch '' is getting disconnected. If you are recreating the receiver, make sure a higher epoch is used. TrackingId:19df4129000056f4000138fb6900043d_G2_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default, Timestamp:2025-10-27T23:56:38 +2025-10-28 08:56:38,201 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 08:56:59,962 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 08:56:59,963 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 08:57:00,021 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 08:57:00,037 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:00,037 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:00,037 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:00,038 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:57:00,038 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,038 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:57:00,038 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,038 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:57:00,049 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:00,099 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:00,151 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:57:00,202 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,203 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:57:00,254 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,254 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:57:00,255 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 08:57:00,461 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,843 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 08:57:00,843 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,843 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 08:57:00,894 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,945 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,945 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:57:00,945 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,945 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:57:00,945 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:57:00,945 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:00,945 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:00,945 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:57:00,946 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,946 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:57:00,946 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,946 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:57:00,946 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:00,982 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:57:00\nReference:b1aa3d89-f334-464c-9b43-a635c69ffb3d\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T23:57:00 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-27T23:57:00"). +2025-10-28 08:57:00,982 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:57:00 +Reference:b1aa3d89-f334-464c-9b43-a635c69ffb3d +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T23:57:00 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-27T23:57:00 +2025-10-28 08:57:00,982 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 08:57:30,148 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 08:57:30,149 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 08:57:30,205 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 08:57:30,221 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:30,221 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:30,221 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:30,221 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:57:30,222 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:30,222 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:57:30,222 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:30,222 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:57:30,231 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:30,282 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:30,333 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:57:30,384 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:30,384 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:57:30,436 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:30,436 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:57:30,436 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 08:57:30,641 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:31,071 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 08:57:31,071 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:31,071 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 08:57:31,122 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:31,173 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:31,173 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:57:31,173 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:31,173 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:57:31,173 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:57:31,173 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:31,173 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:57:31,173 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:57:31,174 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:31,174 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:57:31,174 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:31,174 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:57:31,174 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:57:31,221 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:57:30\nReference:2175823a-4a7a-49fb-834d-76085144505e\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T23:57:31 TrackingId:eb17ea27f2b648beac9e3f7659aa6edb_G4, SystemTracker:gateway5, Timestamp:2025-10-27T23:57:30"). +2025-10-28 08:57:31,221 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:57:30 +Reference:2175823a-4a7a-49fb-834d-76085144505e +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T23:57:31 TrackingId:eb17ea27f2b648beac9e3f7659aa6edb_G4, SystemTracker:gateway5, Timestamp:2025-10-27T23:57:30 +2025-10-28 08:57:31,221 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 08:58:00,872 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 08:58:00,872 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 08:58:00,938 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 08:58:00,956 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:00,956 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:00,957 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:00,957 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:58:00,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:00,957 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:58:00,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:00,957 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:58:00,966 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:01,017 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:01,069 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:58:01,120 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:01,121 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:58:01,172 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:01,172 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:58:01,172 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 08:58:01,377 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:01,890 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 08:58:01,890 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:01,890 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 08:58:01,942 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:01,992 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:01,993 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:58:01,994 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:02,036 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:58:01\nReference:9e0f84e8-8e50-4b0a-9216-aa96ada22b79\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T23:58:01 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-27T23:58:01"). +2025-10-28 08:58:02,037 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:58:01 +Reference:9e0f84e8-8e50-4b0a-9216-aa96ada22b79 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T23:58:01 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-27T23:58:01 +2025-10-28 08:58:02,037 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 08:58:35,752 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 08:58:35,753 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 08:58:35,815 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 08:58:35,832 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:35,832 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:35,833 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:35,833 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:58:35,833 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:35,833 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:58:35,833 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:35,834 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:58:35,841 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:35,892 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:35,944 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:58:35,995 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:35,996 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:58:36,047 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:36,047 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:58:36,047 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 08:58:36,255 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:36,760 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 08:58:36,760 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:36,760 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 08:58:36,812 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:36,862 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:36,862 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:58:36,863 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:58:36,914 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:58:36\nReference:19064197-83b1-4a90-9a55-619d0db5729b\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T23:58:36 TrackingId:9f98d77dd0744a0e9f4b481aa74db26d_G17, SystemTracker:gateway5, Timestamp:2025-10-27T23:58:36"). +2025-10-28 08:58:36,914 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:58:36 +Reference:19064197-83b1-4a90-9a55-619d0db5729b +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T23:58:36 TrackingId:9f98d77dd0744a0e9f4b481aa74db26d_G17, SystemTracker:gateway5, Timestamp:2025-10-27T23:58:36 +2025-10-28 08:58:36,914 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 08:59:07,340 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 08:59:07,341 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 08:59:07,409 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 08:59:07,426 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:07,426 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:07,429 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:07,429 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:59:07,429 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:07,429 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:59:07,430 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:07,430 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:59:07,440 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:07,490 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:07,542 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:59:07,593 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:07,593 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:59:07,645 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:07,645 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:59:07,645 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 08:59:07,850 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:08,204 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 08:59:08,204 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:08,204 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 08:59:08,255 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:08,306 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:59:08,307 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:08,316 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:59:07\nReference:0b4c8833-3c09-4abe-be07-4ce324ba1e91\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T23:59:08 TrackingId:ef2d5e1f9745488bab58ae955f1d7709_G14, SystemTracker:gateway5, Timestamp:2025-10-27T23:59:08"). +2025-10-28 08:59:08,316 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:59:07 +Reference:0b4c8833-3c09-4abe-be07-4ce324ba1e91 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T23:59:08 TrackingId:ef2d5e1f9745488bab58ae955f1d7709_G14, SystemTracker:gateway5, Timestamp:2025-10-27T23:59:08 +2025-10-28 08:59:08,316 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 08:59:21,904 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 08:59:32,198 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:61763 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 08:59:32,245 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 08:59:39,923 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 08:59:39,923 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 08:59:40,021 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 08:59:40,050 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:40,050 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:40,050 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:40,050 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:59:40,050 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:40,050 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:59:40,051 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:40,051 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:59:40,058 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:40,109 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:40,160 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:59:40,212 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:40,212 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:59:40,263 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:40,263 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:59:40,263 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 08:59:40,468 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:40,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 08:59:40,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:40,915 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 08:59:40,967 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:41,018 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:41,018 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:59:41,019 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:41,019 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:59:41,019 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:59:41,019 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:41,019 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 08:59:41,019 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 08:59:41,019 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:41,019 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 08:59:41,019 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:41,020 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 08:59:41,020 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 08:59:41,046 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:59:40\nReference:3418853e-99f7-4c0f-90bf-568741b38887\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T23:59:40 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-27T23:59:40"). +2025-10-28 08:59:41,046 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T23:59:40 +Reference:3418853e-99f7-4c0f-90bf-568741b38887 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T23:59:40 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-27T23:59:40 +2025-10-28 08:59:41,047 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:00:15,311 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:00:15,311 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:00:15,396 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:00:15,448 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:15,448 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:15,448 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:15,449 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:00:15,449 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:15,449 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:00:15,449 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:15,449 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:00:15,486 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:15,537 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:15,589 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:00:15,641 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:15,641 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:00:15,693 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:15,693 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:00:15,693 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:00:15,899 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:16,343 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:00:16,344 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:16,344 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:00:16,394 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:16,446 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:16,446 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:00:16,446 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:16,446 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:00:16,446 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:00:16,446 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:16,446 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:16,446 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:00:16,447 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:16,447 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:00:16,447 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:16,447 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:00:16,447 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:16,485 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:00:16\nReference:c2f9ec4b-08d1-4bf1-8753-667d52907e72\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:00:16 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:00:16"). +2025-10-28 09:00:16,485 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:00:16 +Reference:c2f9ec4b-08d1-4bf1-8753-667d52907e72 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:00:16 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:00:16 +2025-10-28 09:00:16,485 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:00:47,227 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:00:47,227 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:00:47,327 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:00:47,372 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:47,372 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:47,372 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:47,373 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:00:47,373 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:47,373 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:00:47,373 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:47,373 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:00:47,400 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:47,451 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:47,502 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:00:47,553 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:47,553 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:00:47,604 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:47,604 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:00:47,604 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:00:47,811 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:48,232 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:00:48,232 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:48,233 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:00:48,284 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:48,336 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:48,337 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:00:48,337 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:48,337 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:00:48,337 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:00:48,337 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:48,337 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:00:48,337 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:00:48,338 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:48,338 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:00:48,338 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:48,338 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:00:48,338 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:00:48,349 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:00:47\nReference:3c4f4feb-6868-43e8-ba93-c52dcb90a204\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:00:48 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:00:48"). +2025-10-28 09:00:48,349 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:00:47 +Reference:3c4f4feb-6868-43e8-ba93-c52dcb90a204 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:00:48 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:00:48 +2025-10-28 09:00:48,349 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:01:18,751 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:01:18,752 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:01:18,826 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:01:18,844 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:18,844 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:18,844 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:18,845 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:01:18,845 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:18,845 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:01:18,845 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:18,845 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:01:18,854 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:18,905 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:18,956 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:01:19,006 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,007 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:01:19,058 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,059 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:01:19,059 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:01:19,262 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,596 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:01:19,597 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,597 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:01:19,648 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,700 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,700 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:01:19,700 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,700 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:01:19,701 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:01:19,701 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:19,701 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:19,701 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:01:19,701 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,701 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:01:19,701 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,701 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:01:19,701 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:19,719 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:01:19\nReference:d2d12a24-c89f-4b33-be84-ca6e54147fb0\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:01:19 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T00:01:19"). +2025-10-28 09:01:19,719 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:01:19 +Reference:d2d12a24-c89f-4b33-be84-ca6e54147fb0 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:01:19 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T00:01:19 +2025-10-28 09:01:19,719 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:01:50,550 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:01:50,550 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:01:50,655 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:01:50,715 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:50,715 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:50,715 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:50,715 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:01:50,716 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:50,716 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:01:50,716 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:50,716 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:01:50,734 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:50,786 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:50,837 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:01:50,888 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:50,888 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:01:50,941 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:50,941 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:01:50,941 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:01:51,149 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:51,573 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:01:51,573 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:51,573 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:01:51,625 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:51,676 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:01:51,677 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:01:51,717 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:01:51\nReference:e1a00e2c-bcf1-4779-b901-5ddb3b8cc415\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:01:51 TrackingId:f63c3867a84047af9a65e9c843abef8c_G9, SystemTracker:gateway5, Timestamp:2025-10-28T00:01:51"). +2025-10-28 09:01:51,717 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:01:51 +Reference:e1a00e2c-bcf1-4779-b901-5ddb3b8cc415 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:01:51 TrackingId:f63c3867a84047af9a65e9c843abef8c_G9, SystemTracker:gateway5, Timestamp:2025-10-28T00:01:51 +2025-10-28 09:01:51,717 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:02:23,977 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:02:23,978 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:02:24,080 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:02:24,099 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:24,100 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:24,100 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:24,100 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:02:24,101 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:24,101 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:02:24,101 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:24,101 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:02:24,114 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:24,166 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:24,218 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:02:24,270 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:24,270 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:02:24,322 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:24,322 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:02:24,322 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:02:24,529 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:24,941 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:02:24,941 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:24,942 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:02:24,993 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:25,044 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:25,045 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:02:25,045 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:25,045 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:02:25,045 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:02:25,045 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:25,045 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:25,045 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:02:25,045 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:25,046 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:02:25,046 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:25,046 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:02:25,046 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:25,049 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:02:24\nReference:7d7afe79-92d8-4854-9e94-c8508f60ae47\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:02:24 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:02:24"). +2025-10-28 09:02:25,049 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:02:24 +Reference:7d7afe79-92d8-4854-9e94-c8508f60ae47 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:02:24 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:02:24 +2025-10-28 09:02:25,050 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:02:54,257 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:02:54,257 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:02:54,391 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:02:54,461 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:54,461 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:54,461 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:54,461 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:02:54,462 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:54,462 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:02:54,462 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:54,462 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:02:54,512 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:54,563 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:54,613 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:02:54,665 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:54,666 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:02:54,717 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:54,717 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:02:54,717 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:02:54,923 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:55,425 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:02:55,425 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:55,425 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:02:55,476 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:55,527 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:55,527 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:02:55,528 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:02:55,534 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:02:55\nReference:f4aedec0-80b3-444f-8fb5-7f27660508b8\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:02:55 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:02:55"). +2025-10-28 09:02:55,534 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:02:55 +Reference:f4aedec0-80b3-444f-8fb5-7f27660508b8 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:02:55 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:02:55 +2025-10-28 09:02:55,534 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:03:28,525 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:03:28,525 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:03:28,621 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:03:28,638 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:03:28,639 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:03:28,639 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:03:28,639 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:03:28,639 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:28,640 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:03:28,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:28,640 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:03:28,652 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:03:28,703 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:03:28,752 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:03:28,804 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:28,804 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:03:28,854 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:28,855 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:03:28,855 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:03:29,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:29,474 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:03:29,474 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:29,474 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:03:29,525 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:29,576 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:03:29,577 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:03:29,594 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:03:29\nReference:72e89129-c6b1-4ea2-81a6-1331a9ef80ff\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:03:29 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:03:29"). +2025-10-28 09:03:29,595 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:03:29 +Reference:72e89129-c6b1-4ea2-81a6-1331a9ef80ff +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:03:29 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:03:29 +2025-10-28 09:03:29,595 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:04:00,879 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:04:00,880 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:04:00,966 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:04:00,993 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:00,993 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:00,994 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:00,994 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:04:00,994 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:00,994 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:04:00,994 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:00,994 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:04:01,004 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:01,055 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:01,106 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:04:01,157 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,158 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:04:01,209 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,209 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:04:01,209 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:04:01,415 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,818 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:04:01,819 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,819 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:04:01,869 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:04:01,921 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:01,954 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:04:01\nReference:343ed016-f1f9-48d8-9164-a93a8cc7b1f6\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:04:01 TrackingId:cf5d7ef5513b497b9b720ac2c9a161bf_G20, SystemTracker:gateway5, Timestamp:2025-10-28T00:04:01"). +2025-10-28 09:04:01,954 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:04:01 +Reference:343ed016-f1f9-48d8-9164-a93a8cc7b1f6 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:04:01 TrackingId:cf5d7ef5513b497b9b720ac2c9a161bf_G20, SystemTracker:gateway5, Timestamp:2025-10-28T00:04:01 +2025-10-28 09:04:01,954 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:04:31,368 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:04:31,369 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:04:31,447 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:04:31,479 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:31,480 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:31,480 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:31,480 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:04:31,480 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:31,480 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:04:31,480 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:31,480 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:04:31,492 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:31,543 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:31,595 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:04:31,646 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:31,647 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:04:31,697 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:31,697 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:04:31,698 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:04:31,903 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:32,307 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:04:32,307 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:32,307 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:04:32,358 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:32,410 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:32,410 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:04:32,410 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:32,410 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:04:32,410 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:04:32,410 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:32,410 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:04:32,411 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:04:32,411 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:32,411 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:04:32,411 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:32,411 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:04:32,411 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:04:32,436 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:04:32\nReference:30cd771b-e739-42df-aff3-4fbc87b42efb\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:04:32 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T00:04:32"). +2025-10-28 09:04:32,437 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:04:32 +Reference:30cd771b-e739-42df-aff3-4fbc87b42efb +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:04:32 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T00:04:32 +2025-10-28 09:04:32,437 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:05:02,950 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:05:02,951 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:05:03,022 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:05:03,044 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:03,045 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:03,045 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:03,045 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:05:03,069 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:03,069 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:05:03,069 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:03,069 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:05:03,084 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:03,135 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:03,186 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:05:03,237 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:03,238 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:05:03,290 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:03,290 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:05:03,290 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:05:03,495 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:03,916 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:05:03,916 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:03,917 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:05:03,967 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:04,018 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:04,018 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:05:04,019 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:04,040 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:05:03\nReference:d619a7df-be33-4e11-b4e3-ef05c3d2dd2c\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:05:03 TrackingId:9f98d77dd0744a0e9f4b481aa74db26d_G17, SystemTracker:gateway5, Timestamp:2025-10-28T00:05:03"). +2025-10-28 09:05:04,040 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:05:03 +Reference:d619a7df-be33-4e11-b4e3-ef05c3d2dd2c +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:05:03 TrackingId:9f98d77dd0744a0e9f4b481aa74db26d_G17, SystemTracker:gateway5, Timestamp:2025-10-28T00:05:03 +2025-10-28 09:05:04,041 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:05:33,053 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:05:33,054 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:05:33,156 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:05:33,195 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:33,195 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:33,196 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:33,196 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:05:33,196 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:33,196 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:05:33,197 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:33,197 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:05:33,216 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:33,266 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:33,317 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:05:33,368 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:33,368 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:05:33,419 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:33,420 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:05:33,420 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:05:33,624 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:34,050 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:05:34,050 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:34,050 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:05:34,101 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:34,152 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:34,152 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:05:34,152 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:34,152 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:05:34,152 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:05:34,153 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:34,153 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:05:34,153 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:05:34,153 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:34,153 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:05:34,153 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:34,153 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:05:34,153 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:05:34,175 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:05:33\nReference:2a552d6b-e8ff-4fdc-8da3-350dd71e4e57\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:05:33 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:05:33"). +2025-10-28 09:05:34,176 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:05:33 +Reference:2a552d6b-e8ff-4fdc-8da3-350dd71e4e57 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:05:33 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:05:33 +2025-10-28 09:05:34,176 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:06:04,901 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:06:04,901 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:06:05,023 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:06:05,058 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:05,058 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:05,059 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:05,059 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:06:05,059 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:05,059 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:06:05,059 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:05,059 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:06:05,076 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:05,127 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:05,179 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:06:05,231 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:05,231 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:06:05,283 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:05,283 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:06:05,283 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:06:05,488 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:05,920 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:06:05,921 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:05,921 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:06:05,972 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:06,024 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:06,026 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:06:06,026 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:06,026 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:06:06,026 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:06:06,027 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:06,027 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:06,027 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:06:06,027 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:06,027 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:06:06,027 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:06,027 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:06:06,027 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:06,078 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:06:05\nReference:30d39cf3-8604-4218-90bb-1e35cf6d4247\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:06:05 TrackingId:4852e434105e4481843247b80b5db410_G25, SystemTracker:gateway5, Timestamp:2025-10-28T00:06:05"). +2025-10-28 09:06:06,078 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:06:05 +Reference:30d39cf3-8604-4218-90bb-1e35cf6d4247 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:06:05 TrackingId:4852e434105e4481843247b80b5db410_G25, SystemTracker:gateway5, Timestamp:2025-10-28T00:06:05 +2025-10-28 09:06:06,078 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:06:40,274 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:06:40,274 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:06:40,446 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:06:40,516 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:40,516 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:40,516 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:40,516 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:06:40,517 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:40,517 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:06:40,517 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:40,517 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:06:40,544 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:40,595 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:40,646 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:06:40,698 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:40,698 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:06:40,750 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:40,750 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:06:40,750 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:06:40,956 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:41,460 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:06:41,460 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:41,460 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:06:41,512 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:41,563 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:06:41,564 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:06:41,598 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:06:41\nReference:62db1edb-ee3b-442e-bef8-f13ff4ecb301\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:06:41 TrackingId:8fa847ac16604a0cba7a40a9082963b1_G27, SystemTracker:gateway5, Timestamp:2025-10-28T00:06:41"). +2025-10-28 09:06:41,599 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:06:41 +Reference:62db1edb-ee3b-442e-bef8-f13ff4ecb301 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:06:41 TrackingId:8fa847ac16604a0cba7a40a9082963b1_G27, SystemTracker:gateway5, Timestamp:2025-10-28T00:06:41 +2025-10-28 09:06:41,599 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:07:10,492 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:07:10,493 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:07:10,562 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:07:10,593 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:10,593 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:10,593 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:10,594 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:07:10,594 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:10,594 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:07:10,594 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:10,594 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:07:10,613 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:10,665 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:10,716 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:07:10,767 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:10,767 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:07:10,818 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:10,818 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:07:10,818 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:07:11,024 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:11,540 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:07:11,540 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:11,540 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:07:11,591 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:11,643 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:11,643 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:07:11,643 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:11,643 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:07:11,644 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:07:11,644 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:11,644 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:11,644 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:07:11,644 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:11,644 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:07:11,644 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:11,644 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:07:11,644 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:11,661 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:07:11\nReference:78e32154-a7c1-40b2-953e-75b1b2ca14d6\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:07:11 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T00:07:11"). +2025-10-28 09:07:11,662 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:07:11 +Reference:78e32154-a7c1-40b2-953e-75b1b2ca14d6 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:07:11 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T00:07:11 +2025-10-28 09:07:11,662 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:07:43,744 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:07:43,746 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:07:43,851 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:07:43,897 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:43,898 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:43,898 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:43,898 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:07:43,899 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:43,899 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:07:43,899 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:43,899 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:07:43,940 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:43,990 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:44,041 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:07:44,092 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,092 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:07:44,144 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,144 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:07:44,144 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:07:44,351 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,788 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:07:44,788 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,788 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:07:44,839 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,891 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,891 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:07:44,892 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,892 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:07:44,892 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:07:44,892 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:44,892 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:07:44,892 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:07:44,893 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,893 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:07:44,893 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,893 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:07:44,893 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:07:44,922 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:07:44\nReference:b56e0005-aabf-4189-b45e-e27e29e396cd\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:07:44 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:07:44"). +2025-10-28 09:07:44,922 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:07:44 +Reference:b56e0005-aabf-4189-b45e-e27e29e396cd +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:07:44 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:07:44 +2025-10-28 09:07:44,922 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:08:17,603 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:08:17,603 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:08:17,676 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:08:17,700 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:17,700 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:17,701 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:17,701 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:08:17,701 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:17,701 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:08:17,702 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:17,702 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:08:17,712 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:17,764 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:17,815 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:08:17,866 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:17,867 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:08:17,918 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:17,918 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:08:17,918 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:08:18,125 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:18,485 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:08:18,485 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:18,485 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:08:18,536 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:18,587 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:18,587 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:08:18,587 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:18,587 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:08:18,588 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:08:18,588 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:18,588 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:18,588 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:08:18,588 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:18,588 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:08:18,588 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:18,588 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:08:18,588 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:18,622 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:08:18\nReference:9e0d94c7-31fc-496f-863d-2cd2621b01c3\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:08:18 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:08:18"). +2025-10-28 09:08:18,623 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:08:18 +Reference:9e0d94c7-31fc-496f-863d-2cd2621b01c3 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:08:18 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:08:18 +2025-10-28 09:08:18,623 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:08:53,060 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:08:53,061 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:08:53,175 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:08:53,202 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:53,202 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:53,202 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:53,203 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:08:53,203 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:53,203 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:08:53,203 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:53,203 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:08:53,225 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:53,277 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:53,328 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:08:53,378 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:53,378 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:08:53,429 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:53,429 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:08:53,430 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:08:53,634 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:54,051 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:08:54,052 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:54,052 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:08:54,103 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:54,155 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:54,155 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:08:54,155 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:54,155 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:08:54,155 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:08:54,155 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:54,156 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:08:54,156 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:08:54,156 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:54,156 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:08:54,156 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:54,156 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:08:54,156 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:08:54,180 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:08:53\nReference:1ccf2b8b-4d34-4e78-8462-6e9346d69be9\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:08:53 TrackingId:eb17ea27f2b648beac9e3f7659aa6edb_G4, SystemTracker:gateway5, Timestamp:2025-10-28T00:08:53"). +2025-10-28 09:08:54,180 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:08:53 +Reference:1ccf2b8b-4d34-4e78-8462-6e9346d69be9 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:08:53 TrackingId:eb17ea27f2b648beac9e3f7659aa6edb_G4, SystemTracker:gateway5, Timestamp:2025-10-28T00:08:53 +2025-10-28 09:08:54,180 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:09:27,477 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:09:27,478 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:09:27,542 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:09:27,561 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:09:27,562 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:09:27,562 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:09:27,562 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:09:27,562 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:27,563 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:09:27,563 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:27,563 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:09:27,572 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:09:27,624 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:09:27,675 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:09:27,726 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:27,726 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:09:27,777 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:27,777 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:09:27,778 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:09:27,988 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:28,530 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:09:28,530 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:28,531 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:09:28,582 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:09:28,634 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:09:28,648 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:09:28\nReference:7a4b4fee-0b51-4f47-8ea0-7e0cd8fb2165\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:09:28 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-28T00:09:28"). +2025-10-28 09:09:28,648 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:09:28 +Reference:7a4b4fee-0b51-4f47-8ea0-7e0cd8fb2165 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:09:28 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-28T00:09:28 +2025-10-28 09:09:28,648 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:10:03,007 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:10:03,008 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:10:03,086 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:10:03,113 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:03,114 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:03,114 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:03,114 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:10:03,115 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:03,115 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:10:03,115 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:03,115 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:10:03,128 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:03,179 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:03,230 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:10:03,281 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:03,281 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:10:03,333 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:03,333 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:10:03,333 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:10:03,539 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:03,988 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:10:03,989 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:03,989 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:10:04,040 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:04,090 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:04,090 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:10:04,090 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:04,090 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:10:04,090 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:10:04,091 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:04,091 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:04,091 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:10:04,091 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:04,091 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:10:04,091 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:04,091 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:10:04,091 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:04,129 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:10:03\nReference:081a6112-7b4d-4570-84e9-432ce9884191\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:10:03 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:10:03"). +2025-10-28 09:10:04,129 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:10:03 +Reference:081a6112-7b4d-4570-84e9-432ce9884191 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:10:03 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:10:03 +2025-10-28 09:10:04,129 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:10:37,601 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:10:37,601 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:10:37,703 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:10:37,720 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:37,720 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:37,720 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:37,720 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:10:37,721 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:37,721 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:10:37,721 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:37,721 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:10:37,734 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:37,786 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:37,837 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:10:37,888 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:37,889 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:10:37,940 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:37,940 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:10:37,940 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:10:38,146 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:38,666 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:10:38,666 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:38,666 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:10:38,718 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:38,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:38,775 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:10:38,775 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:38,775 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:10:38,775 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:10:38,775 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:38,775 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:10:38,775 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:10:38,775 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:38,775 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:10:38,776 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:38,776 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:10:38,776 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:10:38,827 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:10:38\nReference:1178a152-af45-4db0-b872-68a2e13bafb0\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:10:38 TrackingId:d393d80daedc4939b2e5d690bc7bdf89_G21, SystemTracker:gateway5, Timestamp:2025-10-28T00:10:38"). +2025-10-28 09:10:38,827 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:10:38 +Reference:1178a152-af45-4db0-b872-68a2e13bafb0 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:10:38 TrackingId:d393d80daedc4939b2e5d690bc7bdf89_G21, SystemTracker:gateway5, Timestamp:2025-10-28T00:10:38 +2025-10-28 09:10:38,828 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:11:12,231 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:11:12,232 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:11:12,329 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:11:12,347 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:12,348 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:12,348 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:12,348 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:11:12,349 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:12,349 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:11:12,349 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:12,349 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:11:12,359 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:12,411 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:12,463 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:11:12,515 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:12,515 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:11:12,567 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:12,567 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:11:12,567 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:11:12,774 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:13,118 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:11:13,119 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:13,119 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:11:13,169 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:13,221 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:13,221 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:11:13,221 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:13,221 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:11:13,221 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:11:13,222 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:13,222 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:13,222 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:11:13,222 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:13,222 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:11:13,222 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:13,222 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:11:13,222 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:13,246 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:11:12\nReference:63b85fc1-ab01-48d1-af76-8769cde1fc3a\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:11:13 TrackingId:e7b21db90a82405ea85418737e2da043_G22, SystemTracker:gateway5, Timestamp:2025-10-28T00:11:13"). +2025-10-28 09:11:13,247 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:11:12 +Reference:63b85fc1-ab01-48d1-af76-8769cde1fc3a +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:11:13 TrackingId:e7b21db90a82405ea85418737e2da043_G22, SystemTracker:gateway5, Timestamp:2025-10-28T00:11:13 +2025-10-28 09:11:13,247 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:11:44,449 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 09:11:45,038 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:11:45,038 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:11:45,211 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:11:45,231 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:45,231 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:45,231 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:45,231 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:11:45,231 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:45,231 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:11:45,231 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:45,232 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:11:45,243 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:45,294 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:45,346 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:11:45,397 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:45,397 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:11:45,449 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:45,449 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:11:45,449 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:11:45,655 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:46,027 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:11:46,027 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:46,027 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:11:46,078 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:46,129 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:46,129 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:11:46,129 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:46,129 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:11:46,130 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:11:46,130 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:46,130 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:11:46,130 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:11:46,130 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:46,130 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:11:46,130 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:46,130 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:11:46,130 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:11:46,172 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:11:45\nReference:75f51bcd-9c38-4b9a-9a87-37f0148e9e3b\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:11:45 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:11:45"). +2025-10-28 09:11:46,172 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:11:45 +Reference:75f51bcd-9c38-4b9a-9a87-37f0148e9e3b +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:11:45 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:11:45 +2025-10-28 09:11:46,172 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:11:59,464 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:63804 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 09:11:59,555 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 09:12:20,617 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:12:20,618 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:12:20,889 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:12:20,963 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:20,963 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:20,963 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:20,964 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:12:20,964 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:20,964 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:12:20,964 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:20,964 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:12:20,995 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:21,046 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:21,098 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:12:21,150 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:21,150 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:12:21,203 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:21,203 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:12:21,203 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:12:21,410 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:21,916 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:12:21,916 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:21,916 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:12:21,967 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:22,020 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:22,020 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:12:22,020 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:22,020 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:12:22,020 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:12:22,020 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:22,020 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:22,020 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:12:22,021 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:22,021 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:12:22,021 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:22,021 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:12:22,021 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:22,037 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:12:21\nReference:3f1ff1f0-d4ee-4561-a9ee-520a85541c23\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:12:21 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:12:21"). +2025-10-28 09:12:22,037 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:12:21 +Reference:3f1ff1f0-d4ee-4561-a9ee-520a85541c23 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:12:21 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:12:21 +2025-10-28 09:12:22,038 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:12:53,160 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:12:53,162 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:12:53,356 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:12:53,426 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:53,426 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:53,427 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:53,427 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:12:53,427 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:53,427 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:12:53,427 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:53,428 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:12:53,456 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:53,508 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:53,560 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:12:53,612 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:53,613 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:12:53,665 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:53,665 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:12:53,665 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:12:53,874 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:54,378 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:12:54,378 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:54,378 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:12:54,429 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:54,480 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:54,480 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:12:54,481 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:12:54,484 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:12:53\nReference:0b357f35-d162-470d-93df-7cabc4930a01\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:12:54 TrackingId:095ac8cc67064325bc3c3c10a0449aa3_G16, SystemTracker:gateway5, Timestamp:2025-10-28T00:12:54"). +2025-10-28 09:12:54,485 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:12:53 +Reference:0b357f35-d162-470d-93df-7cabc4930a01 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:12:54 TrackingId:095ac8cc67064325bc3c3c10a0449aa3_G16, SystemTracker:gateway5, Timestamp:2025-10-28T00:12:54 +2025-10-28 09:12:54,485 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:13:26,321 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:13:26,321 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:13:26,455 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:13:26,520 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:13:26,520 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:13:26,520 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:13:26,520 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:13:26,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:26,521 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:13:26,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:26,521 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:13:26,551 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:13:26,603 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:13:26,654 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:13:26,706 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:26,706 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:13:26,758 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:26,758 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:13:26,758 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:13:26,963 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:27,499 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:13:27,499 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:27,499 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:13:27,550 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:27,601 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:27,602 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:13:27,602 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:27,602 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:13:27,602 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:13:27,602 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:13:27,602 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:13:27,602 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:13:27,602 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:27,603 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:13:27,603 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:27,603 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:13:27,603 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:13:27,646 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:13:27\nReference:4081d3e5-f2e6-4fd8-8a39-1b4a2e6d91fd\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:13:27 TrackingId:98ecd5ad03e74f51884ccd2b8638f919_G7, SystemTracker:gateway5, Timestamp:2025-10-28T00:13:27"). +2025-10-28 09:13:27,646 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:13:27 +Reference:4081d3e5-f2e6-4fd8-8a39-1b4a2e6d91fd +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:13:27 TrackingId:98ecd5ad03e74f51884ccd2b8638f919_G7, SystemTracker:gateway5, Timestamp:2025-10-28T00:13:27 +2025-10-28 09:13:27,646 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:14:00,209 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:14:00,209 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:14:00,292 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:14:00,317 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:00,317 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:00,318 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:00,318 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:14:00,318 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:00,319 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:14:00,319 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:00,319 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:14:00,336 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:00,387 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:00,438 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:14:00,489 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:00,490 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:14:00,541 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:00,542 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:14:00,542 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:14:00,747 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:01,111 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:14:01,111 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:01,111 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:14:01,162 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:01,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:01,214 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:14:01,214 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:14:01,215 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:01,230 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:14:00\nReference:a04e7691-bfb2-4e7c-931b-7c3480b81007\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:14:01 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:14:01"). +2025-10-28 09:14:01,230 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:14:00 +Reference:a04e7691-bfb2-4e7c-931b-7c3480b81007 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:14:01 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:14:01 +2025-10-28 09:14:01,230 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:14:32,314 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:14:32,314 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:14:32,477 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:14:32,509 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:32,509 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:32,510 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:32,510 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:14:32,510 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:32,511 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:14:32,511 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:32,511 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:14:32,534 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:32,585 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:32,635 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:14:32,687 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:32,687 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:14:32,739 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:32,739 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:14:32,739 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:14:33,067 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:33,463 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:14:33,463 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:33,463 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:14:33,513 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:33,563 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:14:33,564 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:14:33,610 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:14:33\nReference:d3cfe358-2cb7-4698-8e39-5ce58482969b\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:14:33 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:14:33"). +2025-10-28 09:14:33,611 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:14:33 +Reference:d3cfe358-2cb7-4698-8e39-5ce58482969b +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:14:33 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:14:33 +2025-10-28 09:14:33,611 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:15:08,298 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:15:08,299 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:15:08,373 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:15:08,394 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:08,394 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:08,395 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:08,395 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:15:08,396 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:08,396 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:15:08,396 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:08,396 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:15:08,411 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:08,461 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:08,513 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:15:08,565 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:08,565 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:15:08,616 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:08,616 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:15:08,616 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:15:08,822 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:09,326 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:15:09,326 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:09,326 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:15:09,378 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:09,429 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:09,429 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:15:09,430 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:09,472 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:15:08\nReference:50dd064a-77e9-46b7-b65e-c60e170ca4ec\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:15:09 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:15:09"). +2025-10-28 09:15:09,472 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:15:08 +Reference:50dd064a-77e9-46b7-b65e-c60e170ca4ec +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:15:09 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:15:09 +2025-10-28 09:15:09,472 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:15:42,537 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:15:42,538 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:15:42,717 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:15:42,767 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:42,767 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:42,768 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:42,768 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:15:42,768 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:42,768 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:15:42,769 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:42,769 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:15:42,794 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:42,846 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:42,898 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:15:42,950 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:42,950 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:15:43,002 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:43,002 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:15:43,002 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:15:43,210 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:43,713 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:15:43,713 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:43,713 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:15:43,765 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:43,817 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:43,817 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:15:43,817 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:43,817 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:15:43,817 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:15:43,818 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:43,818 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:15:43,818 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:15:43,818 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:43,818 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:15:43,818 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:43,818 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:15:43,818 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:15:43,822 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:15:43\nReference:b6127e13-068f-487b-9067-7f11f99eaa34\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:15:43 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:15:43"). +2025-10-28 09:15:43,822 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:15:43 +Reference:b6127e13-068f-487b-9067-7f11f99eaa34 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:15:43 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:15:43 +2025-10-28 09:15:43,822 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:16:14,779 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:16:14,781 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:16:14,846 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:16:14,878 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:14,878 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:14,879 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:14,879 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:16:14,879 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:14,879 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:16:14,879 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:14,879 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:16:14,896 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:14,947 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:14,999 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:16:15,049 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,049 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:16:15,101 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,101 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:16:15,101 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:16:15,309 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:16:15,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,640 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:16:15,691 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,742 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,743 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:16:15,743 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,743 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:16:15,743 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:16:15,743 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:15,743 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:15,743 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:16:15,743 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,743 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:16:15,744 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,744 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:16:15,744 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:15,795 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:16:15\nReference:c8b0eb6f-6acf-4452-9134-3acaa5ee072f\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:16:15 TrackingId:761f9de1d4ba4d3f9344a591dccc7a01_G31, SystemTracker:gateway5, Timestamp:2025-10-28T00:16:15"). +2025-10-28 09:16:15,795 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:16:15 +Reference:c8b0eb6f-6acf-4452-9134-3acaa5ee072f +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:16:15 TrackingId:761f9de1d4ba4d3f9344a591dccc7a01_G31, SystemTracker:gateway5, Timestamp:2025-10-28T00:16:15 +2025-10-28 09:16:15,795 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:16:46,963 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:16:46,964 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:16:47,194 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:16:47,215 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:47,215 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:47,215 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:47,216 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:16:47,216 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:47,216 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:16:47,216 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:47,216 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:16:47,260 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:47,312 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:47,363 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:16:47,415 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:47,415 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:16:47,467 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:47,467 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:16:47,467 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:16:47,674 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:48,179 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:16:48,179 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:48,179 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:16:48,229 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:48,281 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:48,281 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:16:48,282 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:16:48,287 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:16:47\nReference:229b58df-eb4f-421f-967c-e1f8b07f2989\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:16:48 TrackingId:f63c3867a84047af9a65e9c843abef8c_G9, SystemTracker:gateway5, Timestamp:2025-10-28T00:16:48"). +2025-10-28 09:16:48,287 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:16:47 +Reference:229b58df-eb4f-421f-967c-e1f8b07f2989 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:16:48 TrackingId:f63c3867a84047af9a65e9c843abef8c_G9, SystemTracker:gateway5, Timestamp:2025-10-28T00:16:48 +2025-10-28 09:16:48,287 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:17:18,855 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:17:18,857 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:17:18,961 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:17:18,991 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:18,992 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:18,992 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:18,992 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:17:18,992 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:18,992 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:17:18,993 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:18,993 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:17:19,014 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:19,065 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:19,116 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:17:19,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:19,167 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:17:19,218 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:19,218 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:17:19,218 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:17:19,424 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:19,871 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:17:19,871 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:19,871 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:17:19,922 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:19,973 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:17:19,974 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:20,025 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:17:19\nReference:455ccf55-7650-42be-8746-b6e28ff0629f\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:17:19 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:17:19"). +2025-10-28 09:17:20,025 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:17:19 +Reference:455ccf55-7650-42be-8746-b6e28ff0629f +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:17:19 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:17:19 +2025-10-28 09:17:20,025 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:17:54,537 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:17:54,538 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:17:54,644 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:17:54,683 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:54,683 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:54,683 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:54,683 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:17:54,683 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:54,683 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:17:54,683 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:54,683 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:17:54,702 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:54,753 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:54,804 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:17:54,856 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:54,856 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:17:54,908 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:54,909 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:17:54,909 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:17:55,115 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:55,469 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:17:55,469 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:55,469 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:17:55,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:55,572 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:17:55,573 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:17:55,613 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:17:55\nReference:0f104029-e201-4555-ac3c-fc5c50f8d21a\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:17:55 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:17:55"). +2025-10-28 09:17:55,614 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:17:55 +Reference:0f104029-e201-4555-ac3c-fc5c50f8d21a +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:17:55 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:17:55 +2025-10-28 09:17:55,614 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:18:28,631 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:18:28,632 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:18:28,733 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:18:28,761 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:28,761 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:28,761 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:28,762 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:18:28,762 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:28,762 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:18:28,762 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:28,762 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:18:28,772 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:28,823 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:28,875 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:18:28,926 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:28,926 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:18:28,978 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:28,978 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:18:28,978 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:18:29,185 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:29,603 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:18:29,604 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:29,604 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:18:29,656 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:29,707 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:29,707 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:18:29,708 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:29,750 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:18:29\nReference:298ce4ab-48b2-483d-82fa-68b21b50d568\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:18:29 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:18:29"). +2025-10-28 09:18:29,750 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:18:29 +Reference:298ce4ab-48b2-483d-82fa-68b21b50d568 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:18:29 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:18:29 +2025-10-28 09:18:29,750 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:18:59,289 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:18:59,290 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:18:59,367 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:18:59,394 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:59,394 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:59,394 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:59,394 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:18:59,395 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:59,395 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:18:59,395 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:59,395 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:18:59,416 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:59,468 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:18:59,520 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:18:59,572 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:59,572 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:18:59,623 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:18:59,623 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:18:59,623 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:18:59,831 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:00,245 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:19:00,246 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:00,246 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:19:00,298 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:00,349 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:00,349 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:19:00,349 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:00,349 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:19:00,350 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:19:00,350 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:19:00,350 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:19:00,350 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:19:00,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:00,350 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:19:00,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:00,350 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:19:00,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:00,361 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:18:59\nReference:50b3fa49-3be8-4a18-b975-9176614d9ffd\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:19:00 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:19:00"). +2025-10-28 09:19:00,361 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:18:59 +Reference:50b3fa49-3be8-4a18-b975-9176614d9ffd +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:19:00 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:19:00 +2025-10-28 09:19:00,362 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:19:32,030 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:19:32,032 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:19:32,148 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:19:32,552 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:19:32,552 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:19:32,552 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:19:32,552 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:19:32,553 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:32,553 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:19:32,553 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:32,553 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:19:32,571 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:19:32,623 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:19:32,674 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:19:32,726 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:32,727 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:19:32,777 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:32,777 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:19:32,778 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:19:32,983 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:33,501 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:19:33,501 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:33,501 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:19:33,553 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:33,604 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:19:33,605 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:19:33,612 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:19:33\nReference:cbf2bba1-6bc7-40e2-a201-994fbdecf437\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:19:33 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:19:33"). +2025-10-28 09:19:33,612 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:19:33 +Reference:cbf2bba1-6bc7-40e2-a201-994fbdecf437 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:19:33 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:19:33 +2025-10-28 09:19:33,612 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:20:05,372 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:20:05,373 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:20:06,217 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 09:20:06,244 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:65022 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 09:20:07,290 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 09:20:08,243 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 09:20:08,268 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:65031 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 09:20:09,421 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 09:20:09,632 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:20:09,660 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:09,660 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:09,660 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:09,661 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:20:09,661 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:09,661 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:20:09,661 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:09,661 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:20:09,673 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:09,725 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:09,777 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:20:09,829 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:09,829 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:20:09,880 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:09,880 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:20:09,880 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:20:10,087 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:10,591 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:20:10,591 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:10,592 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:20:10,643 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:10,694 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:10,694 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:20:10,695 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:10,723 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:20:10\nReference:bf0f1ab7-4034-4534-927a-16a89b11c48d\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:20:10 TrackingId:761f9de1d4ba4d3f9344a591dccc7a01_G31, SystemTracker:gateway5, Timestamp:2025-10-28T00:20:10"). +2025-10-28 09:20:10,723 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:20:10 +Reference:bf0f1ab7-4034-4534-927a-16a89b11c48d +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:20:10 TrackingId:761f9de1d4ba4d3f9344a591dccc7a01_G31, SystemTracker:gateway5, Timestamp:2025-10-28T00:20:10 +2025-10-28 09:20:10,724 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:20:40,782 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:20:40,783 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:20:40,933 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:20:40,981 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:40,982 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:40,982 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:40,982 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:20:40,983 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:40,983 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:20:40,983 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:40,983 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:20:40,996 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:41,048 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:41,100 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:20:41,152 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,152 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:20:41,203 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,203 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:20:41,203 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:20:41,407 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,811 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:20:41,811 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,811 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:20:41,863 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,913 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:20:41,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:20:41,966 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:20:41\nReference:dac7acf5-2cd9-48ce-83b5-51028602ce84\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:20:41 TrackingId:8fa847ac16604a0cba7a40a9082963b1_G27, SystemTracker:gateway5, Timestamp:2025-10-28T00:20:41"). +2025-10-28 09:20:41,966 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:20:41 +Reference:dac7acf5-2cd9-48ce-83b5-51028602ce84 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:20:41 TrackingId:8fa847ac16604a0cba7a40a9082963b1_G27, SystemTracker:gateway5, Timestamp:2025-10-28T00:20:41 +2025-10-28 09:20:41,967 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:21:14,510 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:21:14,511 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:21:14,632 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:21:14,686 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:14,687 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:14,687 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:14,687 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:21:14,688 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:14,688 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:21:14,688 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:14,688 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:21:14,726 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:14,776 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:14,827 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:21:14,879 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:14,879 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:21:14,930 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:14,931 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:21:14,931 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:21:15,132 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:15,641 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:21:15,641 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:15,641 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:21:15,692 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:15,743 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:15,743 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:21:15,743 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:15,743 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:21:15,743 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:21:15,743 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:15,744 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:15,744 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:21:15,744 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:15,744 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:21:15,744 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:15,744 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:21:15,744 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:15,791 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:21:15\nReference:deaa1552-f745-46fa-894a-bd716d15e72e\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:21:15 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:21:15"). +2025-10-28 09:21:15,791 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:21:15 +Reference:deaa1552-f745-46fa-894a-bd716d15e72e +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:21:15 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:21:15 +2025-10-28 09:21:15,791 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:21:47,589 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:21:47,590 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:21:47,650 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:21:47,677 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:47,677 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:47,678 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:47,678 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:21:47,678 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:47,678 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:21:47,679 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:47,679 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:21:47,689 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:47,739 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:47,790 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:21:47,841 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:47,841 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:21:47,893 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:47,893 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:21:47,893 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:21:48,098 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:48,462 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:21:48,463 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:48,463 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:21:48,514 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:48,566 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:48,566 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:21:48,567 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:48,567 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:21:48,567 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:21:48,567 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:48,567 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:21:48,567 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:21:48,567 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:48,567 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:21:48,568 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:48,568 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:21:48,568 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:21:48,607 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:21:48\nReference:3755986c-3598-46af-9919-16377242af10\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:21:48 TrackingId:d393d80daedc4939b2e5d690bc7bdf89_G21, SystemTracker:gateway5, Timestamp:2025-10-28T00:21:48"). +2025-10-28 09:21:48,607 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:21:48 +Reference:3755986c-3598-46af-9919-16377242af10 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:21:48 TrackingId:d393d80daedc4939b2e5d690bc7bdf89_G21, SystemTracker:gateway5, Timestamp:2025-10-28T00:21:48 +2025-10-28 09:21:48,607 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:22:18,951 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:22:18,951 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:22:19,066 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:22:19,105 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:19,105 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:19,105 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:19,106 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:22:19,106 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:19,106 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:22:19,107 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:19,107 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:22:19,129 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:19,180 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:19,232 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:22:19,283 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:19,284 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:22:19,335 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:19,336 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:22:19,336 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:22:19,544 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:19,931 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:22:19,931 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:19,931 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:22:19,982 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:20,033 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:20,034 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:22:20,034 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:20,034 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:22:20,034 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:22:20,034 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:20,034 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:20,034 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:22:20,035 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:20,035 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:22:20,035 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:20,035 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:22:20,035 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:20,074 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:22:19\nReference:ace86c75-7440-4cbf-80d0-3d8ecf3b5c8e\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:22:19 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T00:22:19"). +2025-10-28 09:22:20,074 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:22:19 +Reference:ace86c75-7440-4cbf-80d0-3d8ecf3b5c8e +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:22:19 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T00:22:19 +2025-10-28 09:22:20,075 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:22:49,689 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:22:49,689 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:22:49,762 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:22:49,786 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:49,786 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:49,786 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:49,787 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:22:49,821 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:49,821 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:22:49,821 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:49,821 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:22:49,834 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:49,886 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:49,937 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:22:49,989 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:49,990 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:22:50,041 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:50,041 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:22:50,042 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:22:50,248 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:50,693 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:22:50,694 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:50,694 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:22:50,746 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:50,798 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:50,798 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:22:50,799 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:22:50,834 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:22:50\nReference:e2a23833-6d55-4cc1-adcb-2e07d7edfd78\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:22:50 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:22:50"). +2025-10-28 09:22:50,834 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:22:50 +Reference:e2a23833-6d55-4cc1-adcb-2e07d7edfd78 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:22:50 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:22:50 +2025-10-28 09:22:50,835 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:23:22,036 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:23:22,037 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:23:22,127 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:23:22,178 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:22,178 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:22,178 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:22,179 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:23:22,179 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:22,179 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:23:22,179 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:22,179 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:23:22,192 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:22,243 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:22,294 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:23:22,345 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:22,345 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:23:22,395 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:22,396 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:23:22,396 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:23:22,600 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:23,118 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:23:23,118 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:23,118 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:23:23,170 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:23,221 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:23,221 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:23:23,221 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:23,221 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:23:23,221 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:23:23,222 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:23,222 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:23,222 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:23:23,222 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:23,222 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:23:23,222 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:23,222 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:23:23,222 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:23,259 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:23:22\nReference:ab925437-a3ef-4616-a877-e1dbad77fefd\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:23:22 TrackingId:761f9de1d4ba4d3f9344a591dccc7a01_G31, SystemTracker:gateway5, Timestamp:2025-10-28T00:23:22"). +2025-10-28 09:23:23,259 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:23:22 +Reference:ab925437-a3ef-4616-a877-e1dbad77fefd +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:23:22 TrackingId:761f9de1d4ba4d3f9344a591dccc7a01_G31, SystemTracker:gateway5, Timestamp:2025-10-28T00:23:22 +2025-10-28 09:23:23,259 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:23:54,546 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:23:54,547 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:23:54,623 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:23:54,643 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:54,643 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:54,643 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:54,644 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:23:54,644 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:54,644 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:23:54,645 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:54,645 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:23:54,660 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:54,711 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:54,762 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:23:54,814 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:54,815 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:23:54,866 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:54,866 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:23:54,866 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:23:55,073 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:55,581 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:23:55,581 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:55,581 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:23:55,632 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:55,683 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:55,683 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:23:55,684 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:23:55,712 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:23:55\nReference:1f48a663-72f5-4c40-a675-62f6999222ed\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:23:55 TrackingId:4852e434105e4481843247b80b5db410_G25, SystemTracker:gateway5, Timestamp:2025-10-28T00:23:55"). +2025-10-28 09:23:55,712 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:23:55 +Reference:1f48a663-72f5-4c40-a675-62f6999222ed +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:23:55 TrackingId:4852e434105e4481843247b80b5db410_G25, SystemTracker:gateway5, Timestamp:2025-10-28T00:23:55 +2025-10-28 09:23:55,712 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:24:30,315 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:24:30,317 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:24:30,450 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:24:30,504 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:24:30,505 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:24:30,505 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:24:30,505 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:24:30,506 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:30,506 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:24:30,506 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:30,506 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:24:30,535 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:24:30,587 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:24:30,638 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:24:30,690 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:30,690 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:24:30,742 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:30,742 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:24:30,742 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:24:30,947 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:31,453 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:24:31,453 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:31,453 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:24:31,504 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:31,556 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:31,556 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:24:31,556 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:31,556 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:24:31,556 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:24:31,557 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:24:31,557 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:24:31,557 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:24:31,557 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:31,557 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:24:31,557 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:31,557 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:24:31,557 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:24:31,595 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:24:31\nReference:c91ea786-f3ec-41da-8dec-b98923e1f8ff\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:24:31 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:24:31"). +2025-10-28 09:24:31,595 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:24:31 +Reference:c91ea786-f3ec-41da-8dec-b98923e1f8ff +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:24:31 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:24:31 +2025-10-28 09:24:31,595 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:25:05,044 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:25:05,044 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:25:05,165 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:25:05,211 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:05,212 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:05,212 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:05,212 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:25:05,212 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:05,212 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:25:05,213 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:05,213 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:25:05,237 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:05,288 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:05,340 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:25:05,391 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:05,391 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:25:05,443 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:05,444 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:25:05,444 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:25:05,650 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:06,101 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:25:06,101 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:06,101 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:25:06,152 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:06,204 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:06,205 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:25:06,205 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:06,205 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:25:06,205 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:25:06,205 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:06,205 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:06,205 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:25:06,205 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:06,206 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:25:06,206 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:06,206 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:25:06,206 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:06,217 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:25:05\nReference:8f714709-e4ed-4115-b391-daa3ec4d9ecc\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:25:05 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:25:05"). +2025-10-28 09:25:06,217 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:25:05 +Reference:8f714709-e4ed-4115-b391-daa3ec4d9ecc +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:25:05 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:25:05 +2025-10-28 09:25:06,217 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:25:37,206 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:25:37,207 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:25:37,350 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:25:37,396 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:37,397 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:37,397 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:37,397 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:25:37,398 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:37,398 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:25:37,398 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:37,398 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:25:37,426 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:37,478 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:37,529 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:25:37,584 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:37,584 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:25:37,636 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:37,637 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:25:37,637 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:25:37,843 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:38,287 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:25:38,288 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:38,288 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:25:38,339 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:38,390 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:38,391 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:25:38,391 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:38,391 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:25:38,391 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:25:38,391 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:38,391 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:25:38,391 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:25:38,391 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:38,391 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:25:38,392 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:38,392 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:25:38,392 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:25:38,426 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:25:37\nReference:4115fa63-cb9a-4b7a-8c93-ee9cd76b1dac\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:25:38 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:25:38"). +2025-10-28 09:25:38,426 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:25:37 +Reference:4115fa63-cb9a-4b7a-8c93-ee9cd76b1dac +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:25:38 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:25:38 +2025-10-28 09:25:38,426 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:26:11,322 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:26:11,324 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:26:11,437 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:26:11,478 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:11,478 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:11,478 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:11,479 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:26:11,479 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:11,479 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:26:11,479 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:11,479 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:26:11,494 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:11,546 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:11,597 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:26:11,649 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:11,649 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:26:11,701 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:11,701 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:26:11,701 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:26:11,907 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:12,304 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:26:12,304 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:12,304 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:26:12,356 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:12,407 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:12,407 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:26:12,407 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:12,407 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:26:12,407 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:26:12,407 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:12,408 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:12,408 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:26:12,408 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:12,408 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:26:12,408 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:12,408 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:26:12,408 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:12,449 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:26:12\nReference:65dbd400-61bc-4855-be5c-1e67a9df4417\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:26:12 TrackingId:9219d31a7c4a4d5baba27a33b359e3c1_G19, SystemTracker:gateway5, Timestamp:2025-10-28T00:26:12"). +2025-10-28 09:26:12,449 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:26:12 +Reference:65dbd400-61bc-4855-be5c-1e67a9df4417 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:26:12 TrackingId:9219d31a7c4a4d5baba27a33b359e3c1_G19, SystemTracker:gateway5, Timestamp:2025-10-28T00:26:12 +2025-10-28 09:26:12,449 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:26:42,570 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:26:42,570 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:26:42,649 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:26:42,679 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:42,679 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:42,679 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:42,680 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:26:42,680 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:42,680 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:26:42,680 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:42,680 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:26:42,696 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:42,747 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:42,798 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:26:42,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:42,849 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:26:42,901 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:42,901 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:26:42,901 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:26:43,107 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:43,614 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:26:43,614 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:43,614 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:26:43,665 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:43,715 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:43,716 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:26:43,716 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:43,716 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:26:43,716 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:26:43,716 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:43,716 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:26:43,716 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:26:43,716 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:43,716 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:26:43,717 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:43,717 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:26:43,717 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:26:43,741 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:26:43\nReference:e79b3df6-a78e-4c7d-9797-36221a9bc370\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:26:43 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T00:26:43"). +2025-10-28 09:26:43,742 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:26:43 +Reference:e79b3df6-a78e-4c7d-9797-36221a9bc370 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:26:43 TrackingId:e8305158b8c34a6ea7ed4a9581a6258c_G10, SystemTracker:gateway5, Timestamp:2025-10-28T00:26:43 +2025-10-28 09:26:43,742 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:27:14,249 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:27:14,250 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:27:14,362 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:27:14,409 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:14,409 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:14,409 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:14,410 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:27:14,410 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:14,410 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:27:14,410 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:14,410 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:27:14,427 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:14,477 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:14,528 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:27:14,578 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:14,578 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:27:14,631 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:14,631 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:27:14,631 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:27:14,862 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:15,375 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:27:15,375 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:15,375 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:27:15,425 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:15,476 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:15,476 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:27:15,477 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:15,528 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:27:14\nReference:3387bda6-6c6d-4ddd-9e79-b3e37481599c\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:27:15 TrackingId:cf5d7ef5513b497b9b720ac2c9a161bf_G20, SystemTracker:gateway5, Timestamp:2025-10-28T00:27:15"). +2025-10-28 09:27:15,528 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:27:14 +Reference:3387bda6-6c6d-4ddd-9e79-b3e37481599c +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:27:15 TrackingId:cf5d7ef5513b497b9b720ac2c9a161bf_G20, SystemTracker:gateway5, Timestamp:2025-10-28T00:27:15 +2025-10-28 09:27:15,528 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:27:46,124 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:27:46,125 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:27:46,236 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:27:46,446 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:46,446 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:46,447 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:46,447 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:27:46,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:46,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:27:46,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:46,448 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:27:46,479 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:46,530 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:46,581 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:27:46,632 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:46,632 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:27:46,684 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:46,685 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:27:46,685 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:27:46,891 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:47,337 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:27:47,337 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:47,337 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:27:47,388 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:47,440 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:47,440 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:27:47,440 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:47,440 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:27:47,440 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:27:47,441 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:47,441 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:27:47,441 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:27:47,441 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:47,441 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:27:47,441 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:47,441 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:27:47,441 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:27:47,452 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:27:46\nReference:8821df3a-51e2-4c1d-a3f8-a83f9a0be441\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:27:47 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:27:47"). +2025-10-28 09:27:47,452 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:27:46 +Reference:8821df3a-51e2-4c1d-a3f8-a83f9a0be441 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:27:47 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:27:47 +2025-10-28 09:27:47,453 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:28:19,976 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:28:19,977 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:28:20,061 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:28:20,095 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:20,096 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:20,096 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:20,096 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:28:20,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:20,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:28:20,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:20,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:28:20,112 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:20,164 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:20,216 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:28:20,267 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:20,267 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:28:20,320 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:20,320 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:28:20,320 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:28:20,526 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:21,030 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:28:21,030 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:21,030 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:28:21,082 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:21,134 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:21,134 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:21,135 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:28:21,136 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:21,149 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:28:20\nReference:99d623d9-59a4-4ce6-bc2d-4b9875595ae7\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:28:20 TrackingId:08194b95cae24fb0984d88becc25ecf0_G8, SystemTracker:gateway5, Timestamp:2025-10-28T00:28:20"). +2025-10-28 09:28:21,149 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:28:20 +Reference:99d623d9-59a4-4ce6-bc2d-4b9875595ae7 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:28:20 TrackingId:08194b95cae24fb0984d88becc25ecf0_G8, SystemTracker:gateway5, Timestamp:2025-10-28T00:28:20 +2025-10-28 09:28:21,149 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:28:53,240 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:28:53,240 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:28:53,395 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:28:53,457 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:53,457 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:53,457 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:53,458 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:28:53,458 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:53,458 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:28:53,458 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:53,458 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:28:53,491 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:53,542 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:53,593 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:28:53,645 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:53,645 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:28:53,696 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:53,696 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:28:53,697 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:28:53,903 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:54,407 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:28:54,407 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:54,408 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:28:54,459 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:54,509 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:54,509 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:28:54,509 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:28:54,510 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:28:54,562 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:28:54\nReference:a9143112-ae24-49a6-b38f-a5d1bc12d2a7\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:28:54 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:28:54"). +2025-10-28 09:28:54,562 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:28:54 +Reference:a9143112-ae24-49a6-b38f-a5d1bc12d2a7 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:28:54 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:28:54 +2025-10-28 09:28:54,562 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:29:29,165 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:29:29,166 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:29:29,294 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:29:29,350 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:29:29,351 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:29:29,351 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:29:29,351 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:29:29,352 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:29,352 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:29:29,352 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:29,352 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:29:29,376 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:29:29,428 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:29:29,480 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:29:29,532 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:29,532 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:29:29,585 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:29,585 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:29:29,585 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:29:29,792 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:30,155 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:29:30,155 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:30,155 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:29:30,206 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:30,257 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:30,258 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:29:30,258 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:30,258 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:29:30,258 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:29:30,258 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:29:30,258 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:29:30,258 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:29:30,259 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:30,259 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:29:30,259 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:30,259 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:29:30,259 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:29:30,300 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:29:29\nReference:0e4ac40c-21f3-4529-9165-4f40a9f41600\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:29:30 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T00:29:30"). +2025-10-28 09:29:30,300 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:29:29 +Reference:0e4ac40c-21f3-4529-9165-4f40a9f41600 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:29:30 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T00:29:30 +2025-10-28 09:29:30,301 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:30:02,817 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:30:02,819 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:30:02,966 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:30:03,045 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:03,045 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:03,046 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:03,046 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:30:03,046 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:03,046 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:30:03,046 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:03,046 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:30:03,088 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:03,138 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:03,190 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:30:03,242 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:03,243 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:30:03,294 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:03,294 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:30:03,294 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:30:03,501 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:04,022 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:30:04,022 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:04,022 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:30:04,074 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:04,124 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:04,124 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:30:04,124 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:04,124 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:30:04,125 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:30:04,125 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:04,125 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:04,125 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:30:04,125 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:04,125 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:30:04,125 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:04,125 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:30:04,125 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:04,145 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:30:03\nReference:6e68deff-e455-49c2-b378-6e64d41f960c\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:30:03 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:30:03"). +2025-10-28 09:30:04,145 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:30:03 +Reference:6e68deff-e455-49c2-b378-6e64d41f960c +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:30:03 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:30:03 +2025-10-28 09:30:04,145 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:30:33,684 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:30:33,684 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:30:33,768 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:30:33,792 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:33,792 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:33,792 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:33,793 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:30:33,793 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:33,793 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:30:33,793 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:33,793 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:30:33,804 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:33,856 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:33,908 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:30:33,960 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:33,960 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:30:34,012 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:34,012 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:30:34,013 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:30:34,217 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:34,744 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:30:34,745 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:34,745 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:30:34,796 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:34,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:34,848 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:30:34,848 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:34,848 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:30:34,848 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:30:34,848 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:34,848 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:30:34,848 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:30:34,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:34,849 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:30:34,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:34,849 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:30:34,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:30:34,856 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:30:34\nReference:1eb46641-6ac2-485e-912b-f74aa8a2f807\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:30:34 TrackingId:61ab9501db4349b1920e23e2533cf7a3_G11, SystemTracker:gateway5, Timestamp:2025-10-28T00:30:34"). +2025-10-28 09:30:34,857 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:30:34 +Reference:1eb46641-6ac2-485e-912b-f74aa8a2f807 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:30:34 TrackingId:61ab9501db4349b1920e23e2533cf7a3_G11, SystemTracker:gateway5, Timestamp:2025-10-28T00:30:34 +2025-10-28 09:30:34,857 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:31:08,196 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:31:08,197 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:31:08,314 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:31:08,350 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:08,350 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:08,350 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:08,350 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:31:08,350 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:08,351 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:31:08,351 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:08,351 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:31:08,370 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:08,422 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:08,473 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:31:08,524 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:08,525 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:31:08,575 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:08,576 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:31:08,576 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:31:08,782 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:09,349 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:31:09,349 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:09,350 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:31:09,401 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:31:09,452 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:09,453 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:31:09,453 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:09,468 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:31:08\nReference:a104214b-49af-4cad-ab10-4aa36c17d267\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:31:09 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:31:09"). +2025-10-28 09:31:09,468 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:31:08 +Reference:a104214b-49af-4cad-ab10-4aa36c17d267 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:31:09 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:31:09 +2025-10-28 09:31:09,468 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:31:41,624 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:31:41,624 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:31:41,700 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:31:41,720 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:41,720 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:41,720 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:41,721 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:31:41,721 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:41,721 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:31:41,722 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:41,722 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:31:41,737 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:41,789 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:41,841 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:31:41,892 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:41,893 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:31:41,945 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:41,945 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:31:41,945 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:31:42,150 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:42,654 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:31:42,655 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:42,655 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:31:42,706 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:42,758 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:42,758 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:31:42,759 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:31:42,788 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:31:42\nReference:5cfe1ea0-d742-4d9f-8c5d-dfac341069fb\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:31:42 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:31:42"). +2025-10-28 09:31:42,789 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:31:42 +Reference:5cfe1ea0-d742-4d9f-8c5d-dfac341069fb +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:31:42 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:31:42 +2025-10-28 09:31:42,789 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:32:14,543 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:32:14,544 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:32:14,616 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:32:14,631 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:14,632 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:14,632 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:14,632 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:32:14,633 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:14,633 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:32:14,633 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:14,633 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:32:14,643 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:14,695 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:14,746 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:32:14,798 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:14,798 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:32:14,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:14,849 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:32:14,849 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:32:15,055 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:15,454 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:32:15,454 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:15,454 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:32:15,505 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:32:15,557 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:15,562 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:32:15\nReference:775b421f-85dd-439e-97e6-60b42e289207\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:32:15 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:32:15"). +2025-10-28 09:32:15,562 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:32:15 +Reference:775b421f-85dd-439e-97e6-60b42e289207 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:32:15 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:32:15 +2025-10-28 09:32:15,562 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:32:50,411 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has claimed partition '0' +2025-10-28 09:32:50,412 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:32:50,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:32:50,517 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:50,517 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:50,518 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:50,518 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:32:50,518 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:50,518 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:32:50,518 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:50,518 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:32:50,529 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:50,580 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:50,631 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:32:50,683 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:50,683 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:32:50,735 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:50,735 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:32:50,736 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:32:50,943 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:51,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:32:51,448 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:51,448 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:32:51,499 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:51,551 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:51,551 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:32:51,551 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:51,551 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:32:51,551 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:32:51,551 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:51,551 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:32:51,551 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:32:51,551 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:51,552 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:32:51,552 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:51,552 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:32:51,552 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:32:51,586 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:32:51\nReference:d2e60747-4e67-4a49-9edf-556bd885c4d8\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:32:51 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:32:51"). +2025-10-28 09:32:51,586 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:32:51 +Reference:d2e60747-4e67-4a49-9edf-556bd885c4d8 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:32:51 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:32:51 +2025-10-28 09:32:51,586 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:32:57,764 - watchfiles.main - INFO - 4 changes detected +WARNING: WatchFiles detected changes in 'app/services/eventhub_service.py', 'main.py'. Reloading... +2025-10-28 09:32:57,769 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +ERROR: ASGI callable returned without completing response. +INFO: Shutting down +INFO: Waiting for application shutdown. +2025-10-28 09:32:57,939 - main - INFO - AI Service 종료 +INFO: Application shutdown complete. +INFO: Finished server process [5345] +2025-10-28 09:32:57,940 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' tasks have been cancelled. +2025-10-28 09:32:57,940 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'ae1d0e4a-009d-46f5-864c-7b0302b765ee' has been stopped. +2025-10-28 09:32:57,940 - app.services.redis_service - INFO - Redis 연결 종료 +INFO: Started server process [14855] +INFO: Waiting for application startup. +2025-10-28 09:33:07,543 - main - INFO - ============================================================ +2025-10-28 09:33:07,544 - main - INFO - AI Service (Python) 시작 - Port: 8086 +2025-10-28 09:33:07,544 - main - INFO - Claude Model: claude-3-5-sonnet-20241022 +2025-10-28 09:33:07,544 - main - INFO - Redis: 20.249.177.114:6379 +2025-10-28 09:33:07,544 - main - INFO - ============================================================ +INFO: Application startup complete. +2025-10-28 09:33:07,544 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:50063 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 09:33:07,585 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 09:33:07,629 - watchfiles.main - INFO - 3 changes detected +2025-10-28 09:33:12,552 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 09:33:12,819 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:50238 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 09:33:12,862 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 09:33:17,823 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 09:33:18,819 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:50329 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 09:33:18,860 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 09:33:23,823 - app.api.v1.suggestions - INFO - SSE 스트림 종료 - meetingId: test-meeting-001 +2025-10-28 09:33:24,465 - watchfiles.main - INFO - 4 changes detected +WARNING: WatchFiles detected changes in 'app/services/eventhub_service.py', 'main.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +2025-10-28 09:33:24,603 - main - INFO - AI Service 종료 +INFO: Application shutdown complete. +INFO: Finished server process [14855] +INFO: Started server process [14919] +INFO: Waiting for application startup. +2025-10-28 09:33:25,054 - main - INFO - ============================================================ +2025-10-28 09:33:25,054 - main - INFO - AI Service (Python) 시작 - Port: 8086 +2025-10-28 09:33:25,054 - main - INFO - Claude Model: claude-3-5-sonnet-20241022 +2025-10-28 09:33:25,054 - main - INFO - Redis: 20.249.177.114:6379 +2025-10-28 09:33:25,054 - main - INFO - ============================================================ +2025-10-28 09:33:25,054 - main - INFO - Event Hub 리스너 백그라운드 시작... +2025-10-28 09:33:25,054 - app.services.eventhub_service - INFO - Event Hub 리스너 시작 +INFO: Application startup complete. +2025-10-28 09:33:25,055 - app.api.v1.suggestions - INFO - SSE 스트림 시작 - meetingId: test-meeting-001 +INFO: 127.0.0.1:50418 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 200 OK +2025-10-28 09:33:25,096 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 09:33:25,096 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' is being started +2025-10-28 09:33:25,101 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-28 09:33:25,144 - watchfiles.main - INFO - 6 changes detected +2025-10-28 09:33:25,150 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:33:25,167 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,168 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,168 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,168 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:25,168 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,168 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,168 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,168 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,184 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,235 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,287 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:25,338 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,338 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,390 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,391 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,391 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:33:25,598 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,598 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,598 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,598 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,609 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,610 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,610 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,610 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,627 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,628 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:25,628 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,628 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,628 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,628 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,628 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,628 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,628 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,628 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,629 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:33:25,629 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:33:25,710 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:33:25,727 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,727 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,728 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,728 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:25,728 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,728 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,728 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,728 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,736 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,787 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:25,838 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:25,888 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,889 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:25,940 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:25,940 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:25,940 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:33:26,143 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:26,559 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:33:26,559 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:26,559 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:33:26,611 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:26,662 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:26,663 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:26,663 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:26,663 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:26,663 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:26,663 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:26,663 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:26,664 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:26,664 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:26,664 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:26,664 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:26,664 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:26,664 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:26,702 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:33:26\nReference:38ed8ab6-e1f9-4bd2-b133-206bf0375750\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:33:26 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:33:26"). +2025-10-28 09:33:26,703 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:33:26 +Reference:38ed8ab6-e1f9-4bd2-b133-206bf0375750 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:33:26 TrackingId:84abc0809ec7440c8568cd84fbba6262_G1, SystemTracker:gateway5, Timestamp:2025-10-28T00:33:26 +2025-10-28 09:33:26,703 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:33:57,997 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:33:57,998 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:33:58,073 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:33:58,089 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:58,089 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:58,090 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:58,090 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:58,090 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:58,090 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:58,090 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:58,090 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:58,099 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:58,151 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:58,202 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:58,253 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:58,253 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:58,305 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:58,306 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:58,306 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:33:58,512 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:58,927 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:33:58,927 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:58,927 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:33:58,979 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:59,030 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:59,031 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:59,031 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:59,031 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:59,031 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:59,031 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:59,031 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:33:59,031 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:33:59,031 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:59,032 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:33:59,032 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:59,032 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:33:59,032 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:33:59,072 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:33:58\nReference:d3ee52bb-1ee3-49f9-8a6d-a81fb41a0705\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:33:58 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:33:58"). +2025-10-28 09:33:59,072 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:33:58 +Reference:d3ee52bb-1ee3-49f9-8a6d-a81fb41a0705 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:33:58 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:33:58 +2025-10-28 09:33:59,073 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:34:32,399 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:34:32,399 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:34:32,570 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:34:32,603 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:34:32,604 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:34:32,604 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:34:32,604 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:34:32,604 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:32,604 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:34:32,605 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:32,605 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:34:32,615 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:34:32,667 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:34:32,718 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:34:32,769 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:32,769 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:34:32,821 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:32,821 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:34:32,821 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:34:33,025 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:33,375 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:34:33,375 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:33,376 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:34:33,427 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:33,478 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:33,478 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:34:33,478 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:34:33,479 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:34:33,530 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:34:33\nReference:0830d321-95ae-4cf9-b0c8-30ab160470f6\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:34:33 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:34:33"). +2025-10-28 09:34:33,530 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:34:33 +Reference:0830d321-95ae-4cf9-b0c8-30ab160470f6 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:34:33 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:34:33 +2025-10-28 09:34:33,531 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:35:04,582 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:35:04,582 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:35:04,650 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:35:04,677 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:04,677 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:04,678 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:04,678 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:35:04,678 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:04,678 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:35:04,678 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:04,678 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:35:04,685 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:04,736 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:04,787 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:35:04,838 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:04,838 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:35:04,889 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:04,889 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:35:04,889 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:35:05,094 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:05,600 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:35:05,600 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:05,600 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:35:05,651 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:05,703 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:05,703 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:35:05,703 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:05,703 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:35:05,703 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:35:05,704 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:05,704 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:05,704 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:35:05,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:05,704 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:35:05,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:05,704 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:35:05,704 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:05,755 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:35:05\nReference:16e029b7-cebc-4baf-88db-ba7adb149530\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:35:05 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-28T00:35:05"). +2025-10-28 09:35:05,755 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:35:05 +Reference:16e029b7-cebc-4baf-88db-ba7adb149530 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:35:05 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-28T00:35:05 +2025-10-28 09:35:05,755 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:35:35,719 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:35:35,719 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:35:35,813 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:35:35,843 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:35,843 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:35,843 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:35,844 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:35:35,844 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:35,844 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:35:35,844 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:35,845 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:35:35,884 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:35,935 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:35,986 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:35:36,038 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,038 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:35:36,090 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,090 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:35:36,090 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:35:36,296 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,816 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:35:36,817 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,817 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:35:36,867 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,919 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,920 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:35:36,920 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,920 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:35:36,920 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:35:36,920 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:36,920 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:35:36,920 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:35:36,920 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,920 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:35:36,921 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,921 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:35:36,921 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:35:36,942 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:35:36\nReference:972e0349-adae-48e7-a77d-00c2cab2a6df\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:35:36 TrackingId:08194b95cae24fb0984d88becc25ecf0_G8, SystemTracker:gateway5, Timestamp:2025-10-28T00:35:36"). +2025-10-28 09:35:36,942 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:35:36 +Reference:972e0349-adae-48e7-a77d-00c2cab2a6df +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:35:36 TrackingId:08194b95cae24fb0984d88becc25ecf0_G8, SystemTracker:gateway5, Timestamp:2025-10-28T00:35:36 +2025-10-28 09:35:36,943 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:36:06,309 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:36:06,309 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:36:06,370 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:36:06,386 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:06,386 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:06,386 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:06,387 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:36:06,387 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:06,387 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:36:06,387 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:06,388 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:36:06,395 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:06,446 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:06,498 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:36:06,550 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:06,550 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:36:06,601 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:06,602 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:36:06,602 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:36:06,808 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:07,234 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:36:07,234 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:07,234 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:36:07,286 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:07,336 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:36:07,337 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:07,374 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:36:06\nReference:05beadae-000d-4f55-a3f7-f78a7daf0e6e\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:36:07 TrackingId:9219d31a7c4a4d5baba27a33b359e3c1_G19, SystemTracker:gateway5, Timestamp:2025-10-28T00:36:07"). +2025-10-28 09:36:07,374 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:36:06 +Reference:05beadae-000d-4f55-a3f7-f78a7daf0e6e +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:36:07 TrackingId:9219d31a7c4a4d5baba27a33b359e3c1_G19, SystemTracker:gateway5, Timestamp:2025-10-28T00:36:07 +2025-10-28 09:36:07,374 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:36:39,093 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:36:39,094 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:36:39,251 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:36:39,288 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:39,288 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:39,288 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:39,289 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:36:39,289 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:39,289 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:36:39,290 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:39,290 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:36:39,347 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:39,399 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:39,451 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:36:39,503 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:39,503 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:36:39,555 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:39,555 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:36:39,555 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:36:39,760 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:40,264 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:36:40,265 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:40,265 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:36:40,317 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:40,369 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:40,369 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:36:40,369 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:40,369 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:36:40,369 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:36:40,369 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:40,370 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:36:40,370 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:36:40,370 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:40,370 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:36:40,370 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:40,370 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:36:40,370 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:36:40,386 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:36:39\nReference:96853dcc-0096-4a91-93b3-19dcec40f5c6\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:36:40 TrackingId:98ecd5ad03e74f51884ccd2b8638f919_G7, SystemTracker:gateway5, Timestamp:2025-10-28T00:36:40"). +2025-10-28 09:36:40,386 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:36:39 +Reference:96853dcc-0096-4a91-93b3-19dcec40f5c6 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:36:40 TrackingId:98ecd5ad03e74f51884ccd2b8638f919_G7, SystemTracker:gateway5, Timestamp:2025-10-28T00:36:40 +2025-10-28 09:36:40,387 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:37:13,344 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:37:13,344 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:37:13,481 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:37:13,520 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:13,521 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:13,521 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:13,521 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:37:13,522 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:13,522 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:37:13,522 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:13,522 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:37:13,548 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:13,599 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:13,651 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:37:13,702 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:13,702 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:37:13,753 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:13,753 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:37:13,754 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:37:13,960 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:14,406 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:37:14,406 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:14,406 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:37:14,457 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:14,509 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:14,509 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:37:14,509 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:37:14,510 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:14,526 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:37:14\nReference:121d38be-caf6-4c01-98e9-b3ea2266a14c\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:37:14 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:37:14"). +2025-10-28 09:37:14,527 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:37:14 +Reference:121d38be-caf6-4c01-98e9-b3ea2266a14c +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:37:14 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:37:14 +2025-10-28 09:37:14,527 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:37:43,779 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:37:43,779 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:37:43,901 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:37:43,934 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:43,934 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:43,934 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:43,934 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:37:43,935 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:43,935 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:37:43,935 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:43,935 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:37:43,985 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:44,037 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:44,088 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:37:44,140 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:44,140 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:37:44,191 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:44,191 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:37:44,191 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:37:44,396 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:44,916 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:37:44,916 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:44,916 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:37:44,968 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:45,020 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:45,020 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:37:45,020 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:45,020 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:37:45,020 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:37:45,020 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:45,020 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:37:45,021 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:37:45,021 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:45,021 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:37:45,021 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:45,021 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:37:45,021 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:37:45,054 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:37:44\nReference:06af95c3-0e1c-440d-8222-107b91fc63f1\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:37:44 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:37:44"). +2025-10-28 09:37:45,054 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:37:44 +Reference:06af95c3-0e1c-440d-8222-107b91fc63f1 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:37:44 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:37:44 +2025-10-28 09:37:45,055 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:38:18,646 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:38:18,647 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:38:18,707 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:38:18,722 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:18,722 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:18,722 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:18,723 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:38:18,723 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:18,723 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:38:18,723 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:18,723 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:38:18,733 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:18,784 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:18,835 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:38:18,887 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:18,887 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:38:18,940 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:18,940 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:38:18,940 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:38:19,143 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:19,533 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:38:19,533 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:19,535 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:38:19,586 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:19,639 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:19,639 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:38:19,639 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:19,639 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:38:19,639 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:38:19,640 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:19,640 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:19,640 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:38:19,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:19,640 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:38:19,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:19,640 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:38:19,640 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:19,665 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:38:19\nReference:89665089-1687-4faf-be0e-41e6c97bdc95\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:38:19 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-28T00:38:19"). +2025-10-28 09:38:19,665 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:38:19 +Reference:89665089-1687-4faf-be0e-41e6c97bdc95 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:38:19 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-28T00:38:19 +2025-10-28 09:38:19,665 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:38:52,785 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:38:52,786 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:38:52,898 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:38:52,932 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:52,932 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:52,932 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:52,933 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:38:52,933 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:52,933 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:38:52,933 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:52,933 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:38:52,954 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:53,005 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:53,057 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:38:53,109 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:53,110 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:38:53,161 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:53,162 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:38:53,162 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:38:53,367 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:53,933 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:38:53,933 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:53,933 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:38:53,985 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:38:54,037 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:38:54,054 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:38:53\nReference:4e1e197e-5c56-480b-9335-7f0a0dc64401\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:38:53 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:38:53"). +2025-10-28 09:38:54,054 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:38:53 +Reference:4e1e197e-5c56-480b-9335-7f0a0dc64401 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:38:53 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:38:53 +2025-10-28 09:38:54,054 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:39:23,637 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:39:23,637 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:39:23,717 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:39:23,735 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:23,735 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:23,736 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:23,736 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:39:23,736 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:23,736 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:39:23,737 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:23,737 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:39:23,747 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:23,797 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:23,849 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:39:23,900 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:23,900 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:39:23,952 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:23,952 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:39:23,952 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:39:24,159 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:24,661 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:39:24,661 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:24,661 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:39:24,711 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:24,761 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:24,761 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:39:24,761 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:24,762 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:39:24,762 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:39:24,762 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:24,762 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:24,762 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:39:24,762 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:24,762 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:39:24,762 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:24,763 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:39:24,763 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:24,812 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:39:24\nReference:1204963f-6e95-404f-b2c6-093dd4ffd80e\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:39:24 TrackingId:cf5d7ef5513b497b9b720ac2c9a161bf_G20, SystemTracker:gateway5, Timestamp:2025-10-28T00:39:24"). +2025-10-28 09:39:24,812 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:39:24 +Reference:1204963f-6e95-404f-b2c6-093dd4ffd80e +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:39:24 TrackingId:cf5d7ef5513b497b9b720ac2c9a161bf_G20, SystemTracker:gateway5, Timestamp:2025-10-28T00:39:24 +2025-10-28 09:39:24,812 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:39:54,323 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:39:54,323 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:39:54,383 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:39:54,401 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:54,401 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:54,401 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:54,402 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:39:54,402 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:54,402 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:39:54,402 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:54,402 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:39:54,413 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:54,463 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:54,514 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:39:54,565 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:54,565 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:39:54,617 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:54,617 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:39:54,617 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:39:54,822 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:55,327 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:39:55,328 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:55,328 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:39:55,379 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:55,431 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:55,431 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:39:55,431 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:55,431 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:39:55,431 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:39:55,431 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:55,431 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:39:55,432 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:39:55,432 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:55,432 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:39:55,432 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:55,432 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:39:55,432 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:39:55,442 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:39:54\nReference:d90ec3db-c8c9-4db8-88a3-3e03b0b64d6f\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:39:55 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:39:55"). +2025-10-28 09:39:55,442 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:39:54 +Reference:d90ec3db-c8c9-4db8-88a3-3e03b0b64d6f +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:39:55 TrackingId:9e29b852b1454a579d37ca4725d383c7_G30, SystemTracker:gateway5, Timestamp:2025-10-28T00:39:55 +2025-10-28 09:39:55,443 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:40:26,863 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:40:26,864 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:40:26,924 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:40:26,938 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:26,938 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:26,939 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:26,939 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:40:26,939 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:26,940 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:40:26,940 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:26,940 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:40:26,946 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:26,996 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:27,046 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:40:27,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,097 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:40:27,148 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,149 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:40:27,149 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:40:27,352 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,855 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:40:27,855 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,855 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:40:27,906 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,957 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:40:27,958 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,958 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:40:27,958 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:27,987 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:40:27\nReference:42d0c557-42a5-4a2b-8a55-cc3cc752be29\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:40:27 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:40:27"). +2025-10-28 09:40:27,988 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:40:27 +Reference:42d0c557-42a5-4a2b-8a55-cc3cc752be29 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:40:27 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:40:27 +2025-10-28 09:40:27,988 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:40:57,525 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:40:57,526 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:40:57,612 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:40:57,630 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:57,631 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:57,631 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:57,631 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:40:57,632 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:57,632 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:40:57,632 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:57,632 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:40:57,643 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:57,695 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:57,746 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:40:57,798 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:57,798 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:40:57,849 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:57,850 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:40:57,850 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:40:58,054 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:58,555 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:40:58,556 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:58,556 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:40:58,607 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:58,659 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:58,659 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:40:58,660 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:58,660 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:40:58,660 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:40:58,660 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:58,660 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:40:58,660 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:40:58,660 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:58,661 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:40:58,661 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:58,661 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:40:58,661 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:40:58,698 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:40:58\nReference:aa91d0e8-953a-46ad-965c-a94c02500161\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:40:58 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:40:58"). +2025-10-28 09:40:58,698 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:40:58 +Reference:aa91d0e8-953a-46ad-965c-a94c02500161 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:40:58 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:40:58 +2025-10-28 09:40:58,699 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:41:28,243 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:41:28,244 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:41:28,309 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:41:28,331 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:41:28,331 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:41:28,331 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:41:28,331 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:41:28,332 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:28,332 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:41:28,332 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:28,332 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:41:28,341 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:41:28,393 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:41:28,444 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:41:28,496 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:28,496 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:41:28,547 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:28,548 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:41:28,548 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:41:28,755 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:29,275 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:41:29,275 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:29,275 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:41:29,327 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:29,378 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:29,378 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:41:29,378 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:41:29,379 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:41:29,418 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:41:28\nReference:c45b2e80-eec4-47db-b363-2054e657bd47\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:41:29 TrackingId:095ac8cc67064325bc3c3c10a0449aa3_G16, SystemTracker:gateway5, Timestamp:2025-10-28T00:41:29"). +2025-10-28 09:41:29,418 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:41:28 +Reference:c45b2e80-eec4-47db-b363-2054e657bd47 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:41:29 TrackingId:095ac8cc67064325bc3c3c10a0449aa3_G16, SystemTracker:gateway5, Timestamp:2025-10-28T00:41:29 +2025-10-28 09:41:29,419 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:42:01,903 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:42:01,903 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:42:01,970 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:42:01,989 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:01,989 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:01,990 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:01,990 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:42:01,990 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:01,990 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:42:01,991 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:01,991 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:42:02,000 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:02,051 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:02,102 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:42:02,153 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:02,154 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:42:02,206 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:02,206 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:42:02,206 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:42:02,409 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:02,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:42:02,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:02,914 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:42:02,965 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:03,015 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:03,015 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:42:03,016 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:03,067 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:42:02\nReference:c2a7615a-61a8-4f73-8e42-ffa8842d8d38\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:42:02 TrackingId:f63c3867a84047af9a65e9c843abef8c_G9, SystemTracker:gateway5, Timestamp:2025-10-28T00:42:02"). +2025-10-28 09:42:03,067 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:42:02 +Reference:c2a7615a-61a8-4f73-8e42-ffa8842d8d38 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:42:02 TrackingId:f63c3867a84047af9a65e9c843abef8c_G9, SystemTracker:gateway5, Timestamp:2025-10-28T00:42:02 +2025-10-28 09:42:03,067 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:42:32,809 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:42:32,811 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:42:32,867 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:42:32,882 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:32,883 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:32,883 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:32,883 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:42:32,884 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:32,884 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:42:32,884 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:32,884 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:42:32,895 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:32,947 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:32,998 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:42:33,049 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,049 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:42:33,101 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,101 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:42:33,101 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:42:33,306 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,811 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:42:33,811 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,811 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:42:33,862 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,914 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:42:33,914 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,914 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:42:33,914 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:42:33,915 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:33,915 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:42:33,915 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:42:33,915 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,915 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:42:33,915 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,915 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:42:33,915 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:42:33,930 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:42:33\nReference:18a63bb9-4131-498a-aa05-79c7e89217cd\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:42:33 TrackingId:1d39a898111e4fc594124e503890931a_G23, SystemTracker:gateway5, Timestamp:2025-10-28T00:42:33"). +2025-10-28 09:42:33,930 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:42:33 +Reference:18a63bb9-4131-498a-aa05-79c7e89217cd +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:42:33 TrackingId:1d39a898111e4fc594124e503890931a_G23, SystemTracker:gateway5, Timestamp:2025-10-28T00:42:33 +2025-10-28 09:42:33,931 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:43:06,741 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:43:06,741 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:43:06,816 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:43:06,835 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:06,835 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:06,835 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:06,835 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:43:06,836 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:06,836 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:43:06,836 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:06,836 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:43:06,846 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:06,896 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:06,947 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:43:06,998 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:06,999 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:43:07,050 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:07,050 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:43:07,050 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:43:07,254 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:07,682 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:43:07,682 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:07,682 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:43:07,734 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:07,786 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:07,786 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:43:07,786 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:07,786 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:43:07,786 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:43:07,787 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:07,787 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:07,787 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:43:07,787 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:07,787 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:43:07,787 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:07,787 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:43:07,787 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:07,812 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:43:07\nReference:e3369bad-d307-421d-95cf-83cb8ccc6ff0\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:43:07 TrackingId:d393d80daedc4939b2e5d690bc7bdf89_G21, SystemTracker:gateway5, Timestamp:2025-10-28T00:43:07"). +2025-10-28 09:43:07,812 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:43:07 +Reference:e3369bad-d307-421d-95cf-83cb8ccc6ff0 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:43:07 TrackingId:d393d80daedc4939b2e5d690bc7bdf89_G21, SystemTracker:gateway5, Timestamp:2025-10-28T00:43:07 +2025-10-28 09:43:07,812 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:43:41,152 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:43:41,153 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:43:41,216 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:43:41,246 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:41,246 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:41,246 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:41,247 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:43:41,247 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:41,247 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:43:41,248 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:41,248 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:43:41,257 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:41,307 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:41,357 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:43:41,408 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:41,408 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:43:41,459 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:41,460 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:43:41,460 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:43:41,665 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:42,063 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:43:42,063 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:42,063 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:43:42,115 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:42,166 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:42,166 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:43:42,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:43:42,170 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:43:41\nReference:7eaffc2d-f159-4893-bcab-39c22f447f9d\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:43:41 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:43:41"). +2025-10-28 09:43:42,171 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:43:41 +Reference:7eaffc2d-f159-4893-bcab-39c22f447f9d +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:43:41 TrackingId:57e8a42d67c54b00a22b5b1df5737fc1_G6, SystemTracker:gateway5, Timestamp:2025-10-28T00:43:41 +2025-10-28 09:43:42,171 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:44:13,318 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:44:13,318 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:44:13,377 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:44:13,402 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:13,402 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:13,402 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:13,403 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:44:13,403 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:13,403 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:44:13,403 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:13,403 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:44:13,416 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:13,467 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:13,518 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:44:13,570 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:13,570 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:44:13,621 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:13,621 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:44:13,621 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:44:13,826 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:14,244 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:44:14,244 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:14,244 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:44:14,295 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:44:14,347 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:14,385 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:44:13\nReference:42cac03c-5b9f-4bf4-90ee-7a7898502b9e\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:44:14 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:44:14"). +2025-10-28 09:44:14,385 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:44:13 +Reference:42cac03c-5b9f-4bf4-90ee-7a7898502b9e +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:44:14 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:44:14 +2025-10-28 09:44:14,386 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:44:46,430 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:44:46,430 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:44:46,483 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:44:46,506 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:46,506 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:46,507 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:46,507 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:44:46,507 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:46,507 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:44:46,507 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:46,507 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:44:46,515 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:46,566 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:46,617 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:44:46,668 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:46,669 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:44:46,720 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:46,720 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:44:46,720 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:44:46,925 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:47,277 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:44:47,277 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:47,277 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:44:47,329 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:47,380 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:44:47,381 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:44:47,399 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:44:47\nReference:33ecf9a4-73d9-42df-8c57-5e0011e83bee\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:44:47 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T00:44:47"). +2025-10-28 09:44:47,399 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:44:47 +Reference:33ecf9a4-73d9-42df-8c57-5e0011e83bee +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:44:47 TrackingId:bcf2c64242294153a2679bc3aee26271_G26, SystemTracker:gateway5, Timestamp:2025-10-28T00:44:47 +2025-10-28 09:44:47,400 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:45:21,913 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:45:21,913 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:45:21,989 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:45:22,005 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:22,005 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:22,005 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:22,006 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:45:22,006 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:22,006 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:45:22,006 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:22,006 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:45:22,012 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:22,063 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:22,115 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:45:22,166 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:22,166 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:45:22,218 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:22,218 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:45:22,218 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:45:22,424 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:22,927 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:45:22,928 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:22,928 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:45:22,979 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:23,031 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:23,031 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:45:23,032 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:23,035 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:45:22\nReference:afff4d92-c7e9-4fa4-9513-7a91a95208c0\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:45:22 TrackingId:08194b95cae24fb0984d88becc25ecf0_G8, SystemTracker:gateway5, Timestamp:2025-10-28T00:45:22"). +2025-10-28 09:45:23,035 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:45:22 +Reference:afff4d92-c7e9-4fa4-9513-7a91a95208c0 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:45:22 TrackingId:08194b95cae24fb0984d88becc25ecf0_G8, SystemTracker:gateway5, Timestamp:2025-10-28T00:45:22 +2025-10-28 09:45:23,035 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:45:55,835 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:45:55,836 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:45:55,893 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:45:55,909 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:55,910 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:55,910 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:55,910 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:45:55,911 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:55,911 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:45:55,911 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:55,911 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:45:55,919 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:55,971 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:56,023 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:45:56,075 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:56,075 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:45:56,126 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:56,127 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:45:56,127 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:45:56,333 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:56,850 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:45:56,850 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:56,850 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:45:56,901 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:56,953 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:56,953 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:45:56,953 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:56,953 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:45:56,953 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:45:56,953 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:56,953 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:45:56,953 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:45:56,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:56,954 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:45:56,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:56,954 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:45:56,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:45:57,006 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:45:56\nReference:14bdff4c-0c99-41e6-a987-bbc73d32298d\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:45:56 TrackingId:3ab72df796b54b5da6a004e64e0483ac_G14, SystemTracker:gateway5, Timestamp:2025-10-28T00:45:56"). +2025-10-28 09:45:57,006 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:45:56 +Reference:14bdff4c-0c99-41e6-a987-bbc73d32298d +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:45:56 TrackingId:3ab72df796b54b5da6a004e64e0483ac_G14, SystemTracker:gateway5, Timestamp:2025-10-28T00:45:56 +2025-10-28 09:45:57,006 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:46:29,816 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:46:29,818 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:46:29,878 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:46:29,893 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:46:29,894 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:46:29,894 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:46:29,894 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:46:29,920 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:29,920 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:46:29,920 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:29,920 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:46:29,962 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:46:30,014 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:46:30,065 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:46:30,116 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,116 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:46:30,167 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,167 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:46:30,167 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:46:30,374 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,786 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:46:30,786 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,786 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:46:30,836 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,886 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,886 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:46:30,887 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:46:30,933 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:46:30\nReference:43d12f96-8313-4384-b9a7-8bb4c75e11d0\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:46:30 TrackingId:08194b95cae24fb0984d88becc25ecf0_G8, SystemTracker:gateway5, Timestamp:2025-10-28T00:46:30"). +2025-10-28 09:46:30,933 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:46:30 +Reference:43d12f96-8313-4384-b9a7-8bb4c75e11d0 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:46:30 TrackingId:08194b95cae24fb0984d88becc25ecf0_G8, SystemTracker:gateway5, Timestamp:2025-10-28T00:46:30 +2025-10-28 09:46:30,933 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:47:05,570 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:47:05,571 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:47:05,629 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:47:05,643 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:05,644 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:05,644 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:05,644 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:47:05,644 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:05,644 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:47:05,645 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:05,645 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:47:05,656 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:05,707 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:05,759 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:47:05,810 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:05,810 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:47:05,862 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:05,863 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:47:05,863 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:47:06,066 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:06,480 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:47:06,480 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:06,480 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:47:06,532 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:06,584 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:06,584 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:47:06,584 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:06,584 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:47:06,584 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:47:06,585 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:06,585 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:06,585 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:47:06,585 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:06,585 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:47:06,585 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:06,585 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:47:06,585 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:06,636 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:47:06\nReference:6705b57b-d15f-47eb-a80d-7cf15e432e3a\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:47:06 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:47:06"). +2025-10-28 09:47:06,637 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:47:06 +Reference:6705b57b-d15f-47eb-a80d-7cf15e432e3a +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:47:06 TrackingId:3d4e8348c693439e9b4ec1cea355333d_G18, SystemTracker:gateway5, Timestamp:2025-10-28T00:47:06 +2025-10-28 09:47:06,637 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:47:39,687 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:47:39,688 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:47:39,744 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:47:39,762 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:39,763 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:39,763 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:39,763 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:47:39,764 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:39,764 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:47:39,764 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:39,764 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:47:39,774 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:39,825 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:39,877 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:47:39,928 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:39,929 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:47:39,980 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:39,980 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:47:39,980 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:47:40,185 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:40,687 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:47:40,687 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:40,687 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:47:40,737 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:40,789 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:40,789 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:47:40,789 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:40,789 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:47:40,789 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:47:40,789 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:40,789 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:47:40,789 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:47:40,789 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:40,790 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:47:40,790 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:40,790 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:47:40,790 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:47:40,812 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:47:40\nReference:04669df5-f285-4749-af30-e2b48c46592f\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:47:40 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:47:40"). +2025-10-28 09:47:40,813 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:47:40 +Reference:04669df5-f285-4749-af30-e2b48c46592f +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:47:40 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:47:40 +2025-10-28 09:47:40,813 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:48:14,468 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:48:14,469 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:48:14,534 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:48:14,547 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:14,548 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:14,548 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:14,548 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:48:14,549 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:14,549 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:48:14,549 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:14,549 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:48:14,557 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:14,608 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:14,658 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:48:14,711 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:14,711 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:48:14,761 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:14,761 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:48:14,761 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:48:14,967 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:15,502 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:48:15,503 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:15,503 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:48:15,553 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:15,605 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:15,605 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:48:15,605 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:15,605 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:48:15,605 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:48:15,606 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:15,606 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:15,606 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:48:15,606 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:15,606 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:48:15,606 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:15,606 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:48:15,606 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:15,644 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:48:15\nReference:9f4f20ef-c8d5-494c-8b90-7aa05b65ea33\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:48:15 TrackingId:095ac8cc67064325bc3c3c10a0449aa3_G16, SystemTracker:gateway5, Timestamp:2025-10-28T00:48:15"). +2025-10-28 09:48:15,644 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:48:15 +Reference:9f4f20ef-c8d5-494c-8b90-7aa05b65ea33 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:48:15 TrackingId:095ac8cc67064325bc3c3c10a0449aa3_G16, SystemTracker:gateway5, Timestamp:2025-10-28T00:48:15 +2025-10-28 09:48:15,644 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:48:44,832 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:48:44,832 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:48:44,892 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:48:44,907 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:44,907 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:44,908 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:44,908 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:48:44,908 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:44,908 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:48:44,908 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:44,908 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:48:44,914 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:44,966 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:45,018 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:48:45,070 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,070 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:48:45,121 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,121 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:48:45,121 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:48:45,327 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,742 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:48:45,742 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,742 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:48:45,793 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,843 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,843 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:48:45,844 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:48:45,854 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:48:45\nReference:718febbc-a486-4885-b5e8-952f9ca1a189\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:48:45 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:48:45"). +2025-10-28 09:48:45,854 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:48:45 +Reference:718febbc-a486-4885-b5e8-952f9ca1a189 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:48:45 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:48:45 +2025-10-28 09:48:45,855 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:49:15,652 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:49:15,653 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:49:15,882 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:49:16,013 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:16,014 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:16,014 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:16,014 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:49:16,015 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,015 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:49:16,015 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,015 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:49:16,067 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:16,118 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:16,169 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:49:16,222 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,222 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:49:16,273 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,273 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:49:16,273 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:49:16,481 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,850 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:49:16,851 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,851 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:49:16,902 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,953 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:49:16,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:16,988 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:49:16\nReference:7adba8d7-5077-4b95-83bb-907c184d2e34\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:49:16 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:49:16"). +2025-10-28 09:49:16,988 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:49:16 +Reference:7adba8d7-5077-4b95-83bb-907c184d2e34 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:49:16 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:49:16 +2025-10-28 09:49:16,988 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:49:49,451 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:49:49,453 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:49:49,534 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:49:49,565 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:49,565 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:49,565 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:49,565 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:49:49,566 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:49,566 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:49:49,566 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:49,566 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:49:49,586 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:49,638 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:49,689 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:49:49,741 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:49,741 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:49:49,792 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:49,792 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:49:49,792 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:49:49,998 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:50,502 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:49:50,503 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:50,503 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:49:50,554 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:49:50,606 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:49:50,625 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:49:50\nReference:5219cbb8-51bb-4c27-af2a-1e90141cfbc3\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:49:50 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-28T00:49:50"). +2025-10-28 09:49:50,625 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:49:50 +Reference:5219cbb8-51bb-4c27-af2a-1e90141cfbc3 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:49:50 TrackingId:89620536f8074f4fa6575df400dece8a_G13, SystemTracker:gateway5, Timestamp:2025-10-28T00:49:50 +2025-10-28 09:49:50,625 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:50:19,947 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:50:19,948 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:50:20,003 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:50:20,017 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:20,017 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:20,018 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:20,018 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:50:20,018 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:20,018 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:50:20,019 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:20,019 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:50:20,027 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:20,079 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:20,131 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:50:20,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:20,182 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:50:20,234 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:20,234 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:50:20,234 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:50:20,439 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:20,942 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:50:20,943 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:20,943 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:50:20,993 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:21,046 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:21,046 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:50:21,046 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:21,046 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:50:21,046 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:50:21,047 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:21,047 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:21,047 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:50:21,047 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:21,047 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:50:21,047 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:21,047 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:50:21,047 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:21,067 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:50:20\nReference:9318da4c-04fb-48d7-802f-e952f79c7fd4\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:50:20 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:50:20"). +2025-10-28 09:50:21,067 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:50:20 +Reference:9318da4c-04fb-48d7-802f-e952f79c7fd4 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:50:20 TrackingId:9e118d3a8fe74369b8abf3805e29ecfc_G28, SystemTracker:gateway5, Timestamp:2025-10-28T00:50:20 +2025-10-28 09:50:21,067 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:50:54,656 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:50:54,657 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:50:54,793 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:50:54,841 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:54,841 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:54,842 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:54,842 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:50:54,842 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:54,842 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:50:54,843 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:54,843 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:50:54,869 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:54,919 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:54,971 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:50:55,022 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,023 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:50:55,075 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,075 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:50:55,075 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:50:55,282 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,693 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:50:55,694 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,694 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:50:55,745 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,797 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,797 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:50:55,797 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,797 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:50:55,797 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:50:55,798 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:55,798 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:50:55,798 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:50:55,798 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,798 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:50:55,798 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,798 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:50:55,798 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:50:55,833 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:50:55\nReference:1fa713f7-bdcf-474d-80d2-5e5c53168a47\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:50:55 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:50:55"). +2025-10-28 09:50:55,833 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:50:55 +Reference:1fa713f7-bdcf-474d-80d2-5e5c53168a47 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:50:55 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:50:55 +2025-10-28 09:50:55,833 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:51:27,478 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:51:27,479 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:51:27,583 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:51:27,613 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:51:27,613 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:51:27,613 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:51:27,613 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:51:27,614 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:27,614 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:51:27,614 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:27,614 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:51:27,624 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:51:27,676 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:51:27,728 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:51:27,780 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:27,780 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:51:27,832 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:27,832 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:51:27,832 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:51:28,038 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:28,417 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:51:28,417 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:28,417 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:51:28,468 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:28,520 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:28,520 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:51:28,520 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:51:28,521 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:51:28,548 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:51:28\nReference:0cdbf9bc-6b92-4edb-9cff-5a4a7b85ff80\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:51:28 TrackingId:9219d31a7c4a4d5baba27a33b359e3c1_G19, SystemTracker:gateway5, Timestamp:2025-10-28T00:51:28"). +2025-10-28 09:51:28,548 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:51:28 +Reference:0cdbf9bc-6b92-4edb-9cff-5a4a7b85ff80 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:51:28 TrackingId:9219d31a7c4a4d5baba27a33b359e3c1_G19, SystemTracker:gateway5, Timestamp:2025-10-28T00:51:28 +2025-10-28 09:51:28,548 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:52:00,822 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:52:00,822 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:52:00,920 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:52:00,946 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:00,946 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:00,946 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:00,947 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:52:00,947 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:00,947 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:52:00,948 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:00,948 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:52:00,967 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:01,018 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:01,070 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:52:01,122 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:01,122 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:52:01,174 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:01,174 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:52:01,174 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:52:01,381 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:01,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:52:01,957 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:01,958 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:52:02,008 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:02,059 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:02,060 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:52:02,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:02,060 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:52:02,060 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:52:02,060 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:02,060 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:02,060 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:52:02,060 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:02,060 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:52:02,061 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:02,061 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:52:02,061 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:02,094 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:52:01\nReference:b8cea4e6-f456-4d2d-808a-ea26664b8833\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:52:01 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-28T00:52:01"). +2025-10-28 09:52:02,094 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:52:01 +Reference:b8cea4e6-f456-4d2d-808a-ea26664b8833 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:52:01 TrackingId:068cabe4c16e4900ac4c625c72aeecf6_G15, SystemTracker:gateway5, Timestamp:2025-10-28T00:52:01 +2025-10-28 09:52:02,094 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:52:35,963 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:52:35,964 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:52:36,061 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:52:36,108 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:36,108 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:36,108 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:36,108 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:52:36,109 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:36,109 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:52:36,109 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:36,109 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:52:36,130 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:36,180 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:36,231 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:52:36,283 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:36,283 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:52:36,334 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:36,334 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:52:36,334 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:52:36,538 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:36,934 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:52:36,935 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:36,935 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:52:36,986 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:37,038 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:37,038 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:52:37,038 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:37,038 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:52:37,038 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:52:37,039 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:37,039 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:52:37,039 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:52:37,039 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:37,039 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:52:37,039 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:37,039 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:52:37,039 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:52:37,089 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:52:36\nReference:b8ad5dfc-c8bb-4e76-972b-f5e7480642d1\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:52:36 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:52:36"). +2025-10-28 09:52:37,090 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:52:36 +Reference:b8ad5dfc-c8bb-4e76-972b-f5e7480642d1 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:52:36 TrackingId:f4044c27ba534434ace7085a0235c1bd_G24, SystemTracker:gateway5, Timestamp:2025-10-28T00:52:36 +2025-10-28 09:52:37,090 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:53:11,214 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:53:11,215 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:53:11,295 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:53:11,322 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:11,322 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:11,322 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:11,322 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:53:11,323 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:11,323 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:53:11,323 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:11,323 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:53:11,334 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:11,385 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:11,437 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:53:11,488 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:11,488 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:53:11,540 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:11,540 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:53:11,541 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:53:11,747 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:12,074 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:53:12,074 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:12,074 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:53:12,125 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:12,178 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:12,178 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:53:12,178 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:12,178 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:53:12,178 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:53:12,179 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:12,179 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:12,179 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:53:12,179 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:12,179 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:53:12,179 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:12,179 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:53:12,179 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:12,183 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:53:11\nReference:90f86d96-6b78-46d9-9b5d-1c5d84b7893b\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:53:12 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:53:12"). +2025-10-28 09:53:12,184 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:53:11 +Reference:90f86d96-6b78-46d9-9b5d-1c5d84b7893b +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:53:12 TrackingId:c60a2d49ad134a6ab288fc33435307c2_G5, SystemTracker:gateway5, Timestamp:2025-10-28T00:53:12 +2025-10-28 09:53:12,184 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:53:42,296 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:53:42,298 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:53:42,358 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:53:42,373 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:42,373 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:42,373 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:42,374 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:53:42,374 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:42,374 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:53:42,374 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:42,374 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:53:42,382 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:42,433 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:42,485 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:53:42,536 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:42,536 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:53:42,588 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:42,589 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:53:42,589 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:53:42,796 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:43,244 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:53:43,244 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:43,244 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:53:43,296 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:43,347 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:53:43,348 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:53:43,371 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:53:42\nReference:6c23a682-bba8-48cf-8e50-779a70e43a7a\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:53:43 TrackingId:9219d31a7c4a4d5baba27a33b359e3c1_G19, SystemTracker:gateway5, Timestamp:2025-10-28T00:53:43"). +2025-10-28 09:53:43,372 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:53:42 +Reference:6c23a682-bba8-48cf-8e50-779a70e43a7a +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:53:43 TrackingId:9219d31a7c4a4d5baba27a33b359e3c1_G19, SystemTracker:gateway5, Timestamp:2025-10-28T00:53:43 +2025-10-28 09:53:43,372 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:54:14,308 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:54:14,308 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:54:14,408 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:54:14,429 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:14,430 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:14,430 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:14,430 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:54:14,431 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:14,431 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:54:14,431 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:14,431 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:54:14,457 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:14,508 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:14,560 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:54:14,613 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:14,613 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:54:14,665 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:14,665 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:54:14,665 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:54:14,872 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:15,289 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:54:15,289 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:15,289 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:54:15,341 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:15,392 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:54:15,393 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:15,394 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:54:15,394 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:15,432 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:54:14\nReference:f11d19d6-25ae-49d9-a7db-12555875f185\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:54:15 TrackingId:f63c3867a84047af9a65e9c843abef8c_G9, SystemTracker:gateway5, Timestamp:2025-10-28T00:54:15"). +2025-10-28 09:54:15,432 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:54:14 +Reference:f11d19d6-25ae-49d9-a7db-12555875f185 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:54:15 TrackingId:f63c3867a84047af9a65e9c843abef8c_G9, SystemTracker:gateway5, Timestamp:2025-10-28T00:54:15 +2025-10-28 09:54:15,432 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:54:46,154 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:54:46,155 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:54:46,220 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:54:46,236 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:46,236 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:46,237 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:46,237 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:54:46,237 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:46,237 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:54:46,238 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:46,238 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:54:46,247 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:46,299 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:46,351 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:54:46,402 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:46,402 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:54:46,453 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:46,453 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:54:46,453 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:54:46,662 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:47,079 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:54:47,079 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:47,079 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:54:47,130 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:47,181 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:47,181 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:54:47,181 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:47,181 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:54:47,182 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:54:47,182 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:47,182 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:54:47,182 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:54:47,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:47,182 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:54:47,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:47,182 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:54:47,182 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:54:47,222 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:54:46\nReference:29465b17-0eb4-434d-9108-c3a444a3575c\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:54:46 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:54:46"). +2025-10-28 09:54:47,223 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:54:46 +Reference:29465b17-0eb4-434d-9108-c3a444a3575c +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:54:46 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:54:46 +2025-10-28 09:54:47,223 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:55:18,474 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:55:18,474 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:55:18,557 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:55:18,590 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:18,590 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:18,591 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:18,591 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:55:18,591 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:18,591 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:55:18,592 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:18,592 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:55:18,600 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:18,651 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:18,703 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:55:18,753 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:18,753 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:55:18,805 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:18,805 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:55:18,805 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:55:19,010 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:19,459 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:55:19,460 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:19,460 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:55:19,511 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:55:19,563 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:19,596 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:55:19\nReference:56f12c04-855b-4b01-8cce-9c559e1776aa\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:55:19 TrackingId:eb17ea27f2b648beac9e3f7659aa6edb_G4, SystemTracker:gateway5, Timestamp:2025-10-28T00:55:19"). +2025-10-28 09:55:19,597 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:55:19 +Reference:56f12c04-855b-4b01-8cce-9c559e1776aa +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:55:19 TrackingId:eb17ea27f2b648beac9e3f7659aa6edb_G4, SystemTracker:gateway5, Timestamp:2025-10-28T00:55:19 +2025-10-28 09:55:19,597 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:55:52,781 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:55:52,781 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:55:52,840 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:55:52,855 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:52,855 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:52,855 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:52,856 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:55:52,856 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:52,856 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:55:52,856 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:52,856 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:55:52,865 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:52,916 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:52,967 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:55:53,018 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:53,018 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:55:53,070 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:53,070 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:55:53,070 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:55:53,650 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:54,045 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:55:54,045 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:54,045 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:55:54,097 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:54,148 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:54,148 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:55:54,148 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:54,148 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:55:54,148 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:55:54,148 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:54,148 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:55:54,149 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:55:54,149 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:54,149 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:55:54,149 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:54,149 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:55:54,149 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:55:54,160 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:55:53\nReference:6be43e6c-1293-429e-95ad-4f7a1933fffd\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:55:53 TrackingId:61ab9501db4349b1920e23e2533cf7a3_G11, SystemTracker:gateway5, Timestamp:2025-10-28T00:55:53"). +2025-10-28 09:55:54,160 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:55:53 +Reference:6be43e6c-1293-429e-95ad-4f7a1933fffd +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:55:53 TrackingId:61ab9501db4349b1920e23e2533cf7a3_G11, SystemTracker:gateway5, Timestamp:2025-10-28T00:55:53 +2025-10-28 09:55:54,160 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:56:24,267 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:56:24,267 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:56:24,356 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:56:24,370 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:24,371 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:24,371 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:24,371 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:56:24,371 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:24,371 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:56:24,371 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:24,371 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:56:24,377 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:24,429 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:24,481 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:56:24,532 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:24,532 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:56:24,583 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:24,584 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:56:24,584 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:56:24,790 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:25,186 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:56:25,186 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:25,186 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:56:25,238 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:25,289 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:25,290 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:56:25,290 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:25,290 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:56:25,290 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:56:25,290 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:25,290 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:25,290 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:56:25,291 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:25,291 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:56:25,291 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:25,291 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:56:25,291 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:25,301 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:56:24\nReference:f9340612-0537-4ed2-994a-9910b37549f5\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:56:25 TrackingId:761f9de1d4ba4d3f9344a591dccc7a01_G31, SystemTracker:gateway5, Timestamp:2025-10-28T00:56:25"). +2025-10-28 09:56:25,301 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:56:24 +Reference:f9340612-0537-4ed2-994a-9910b37549f5 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:56:25 TrackingId:761f9de1d4ba4d3f9344a591dccc7a01_G31, SystemTracker:gateway5, Timestamp:2025-10-28T00:56:25 +2025-10-28 09:56:25,301 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:56:56,945 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:56:56,947 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:56:57,017 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:56:57,037 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:57,037 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:57,038 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:57,038 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:56:57,038 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,039 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:56:57,039 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,039 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:56:57,052 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:57,103 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:57,154 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:56:57,205 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,206 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:56:57,257 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,257 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:56:57,258 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:56:57,460 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,851 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:56:57,851 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,851 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:56:57,903 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,954 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:56:57,954 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,954 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:56:57,954 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:56:57,954 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:57,955 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:56:57,955 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:56:57,955 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,955 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:56:57,955 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,955 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:56:57,955 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:56:57,967 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:56:57\nReference:47f12f56-082b-4645-b1eb-a7a051480649\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:56:57 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:56:57"). +2025-10-28 09:56:57,968 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:56:57 +Reference:47f12f56-082b-4645-b1eb-a7a051480649 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:56:57 TrackingId:012583dc6d93478081f43549622f0d06_G29, SystemTracker:gateway5, Timestamp:2025-10-28T00:56:57 +2025-10-28 09:56:57,968 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:57:30,764 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:57:30,765 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:57:30,829 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:57:30,846 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:57:30,846 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:57:30,846 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:57:30,846 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:57:30,846 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:30,847 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:57:30,847 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:30,847 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:57:30,859 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:57:30,910 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:57:30,961 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:57:31,013 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,014 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:57:31,065 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,065 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:57:31,065 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:57:31,269 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,665 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:57:31,665 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,666 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:57:31,717 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,768 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:57:31,769 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:57:31,779 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:57:31\nReference:26afdbc7-814b-4b50-9544-73bf2a469ea9\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:57:31 TrackingId:a4c196cf95f6454fab3c975e69d49822_G2, SystemTracker:gateway5, Timestamp:2025-10-28T00:57:31"). +2025-10-28 09:57:31,780 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:57:31 +Reference:26afdbc7-814b-4b50-9544-73bf2a469ea9 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:57:31 TrackingId:a4c196cf95f6454fab3c975e69d49822_G2, SystemTracker:gateway5, Timestamp:2025-10-28T00:57:31 +2025-10-28 09:57:31,780 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:58:01,331 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:58:01,332 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:58:01,399 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:58:01,423 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:01,423 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:01,424 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:01,424 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:58:01,425 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:01,425 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:58:01,425 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:01,431 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:58:01,445 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:01,497 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:01,548 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:58:01,598 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:01,598 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:58:01,649 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:01,650 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:58:01,650 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:58:01,856 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:02,391 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:58:02,391 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:02,391 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:58:02,442 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:02,494 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:02,495 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:58:02,495 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:02,495 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:58:02,495 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:58:02,495 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:02,495 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:02,495 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:58:02,495 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:02,495 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:58:02,496 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:02,496 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:58:02,496 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:02,500 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:58:01\nReference:b9f1cee0-5d88-469b-8dd7-a59268601765\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:58:02 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:58:02"). +2025-10-28 09:58:02,500 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:58:01 +Reference:b9f1cee0-5d88-469b-8dd7-a59268601765 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:58:02 TrackingId:7e31c8d4222f4813b52d4636ec9caf46_G0, SystemTracker:gateway5, Timestamp:2025-10-28T00:58:02 +2025-10-28 09:58:02,500 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-28 09:58:36,820 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor '67a673f4-1ffb-46b9-8560-5e0ca6133c66' has claimed partition '0' +2025-10-28 09:58:36,820 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-28 09:58:36,917 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-28 09:58:36,968 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:36,969 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:36,969 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:36,969 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:58:36,969 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:36,969 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:58:36,970 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:36,970 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:58:36,989 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:37,040 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:37,091 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:58:37,142 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:37,143 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:58:37,194 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:37,194 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:58:37,194 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-28 09:58:37,399 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:37,905 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-28 09:58:37,905 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:37,906 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-28 09:58:37,956 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-28 09:58:38,007 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-28 09:58:38,052 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:58:37\nReference:2193cf38-9936-42ff-b4a6-bd7757d06192\nTrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-28T00:58:37 TrackingId:f4e8f6702ae942e492afd72bb88b4a40_G3, SystemTracker:gateway5, Timestamp:2025-10-28T00:58:37"). +2025-10-28 09:58:38,052 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:1c1b4201-aba8-4a03-9c12-4afee88bfdaf_B5, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-28T00:58:37 +Reference:2193cf38-9936-42ff-b4a6-bd7757d06192 +TrackingId:78364365-fce7-47be-b7ac-f9aafb1283bc_B5 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-28T00:58:37 TrackingId:f4e8f6702ae942e492afd72bb88b4a40_G3, SystemTracker:gateway5, Timestamp:2025-10-28T00:58:37 +2025-10-28 09:58:38,053 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance '67a673f4-1ffb-46b9-8560-5e0ca6133c66' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: diff --git a/logs/ai-python-restart.log b/logs/ai-python-restart.log new file mode 100644 index 0000000..710eed6 --- /dev/null +++ b/logs/ai-python-restart.log @@ -0,0 +1,271 @@ +INFO: Will watch for changes in these directories: ['/Users/jominseo/HGZero/ai-python'] +INFO: Uvicorn running on http://0.0.0.0:8086 (Press CTRL+C to quit) +INFO: Started reloader process [5213] using WatchFiles +INFO: Started server process [5216] +INFO: Waiting for application startup. +2025-10-27 16:56:26,595 - main - INFO - ============================================================ +2025-10-27 16:56:26,595 - main - INFO - AI Service (Python) 시작 - Port: 8086 +2025-10-27 16:56:26,595 - main - INFO - Claude Model: claude-3-5-sonnet-20241022 +2025-10-27 16:56:26,595 - main - INFO - Redis: 20.249.177.114:6379 +2025-10-27 16:56:26,595 - main - INFO - ============================================================ +2025-10-27 16:56:26,595 - main - INFO - Event Hub 리스너 백그라운드 시작... +2025-10-27 16:56:26,595 - app.services.eventhub_service - INFO - Event Hub 리스너 시작 +INFO: Application startup complete. +2025-10-27 16:56:26,694 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 16:56:26,694 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'd8ad9755-1457-4010-9b6e-5796106dddb1' is being started +2025-10-27 16:56:26,791 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:56:26,830 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:26,830 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:26,830 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:26,831 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:26,831 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:26,831 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:26,831 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:26,831 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:26,847 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:26,899 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:26,950 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:27,001 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,001 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:27,053 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,053 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:27,053 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:56:27,259 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,259 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:27,260 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,260 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:27,269 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,269 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:27,270 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,270 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:27,280 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,280 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:27,281 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:27,282 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,282 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:27,282 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,282 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:27,282 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,282 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:27,282 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,282 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:27,283 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'd8ad9755-1457-4010-9b6e-5796106dddb1' has claimed partition '0' +2025-10-27 16:56:27,283 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 16:56:27,351 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:56:27,369 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:27,369 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:27,369 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:27,370 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:27,370 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,370 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:27,370 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,370 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:27,384 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:27,436 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:27,489 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:27,539 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,539 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:27,590 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:27,591 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:27,591 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:56:27,797 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:28,219 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 16:56:28,219 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:28,219 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 16:56:28,271 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:28,322 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:28,322 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:28,322 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:28,322 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:28,322 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:28,322 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:28,323 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:28,323 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:28,323 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:28,323 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:28,323 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:28,323 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:28,323 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:28,356 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'd8ad9755-1457-4010-9b6e-5796106dddb1' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:56:27\nReference:2cf2b525-24ca-4693-99a0-364f8a5c24c9\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T07:56:28 TrackingId:4a8b6c79abe243a3a753b14892c87299_G10, SystemTracker:gateway5, Timestamp:2025-10-27T07:56:28"). +2025-10-27 16:56:28,357 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:56:27 +Reference:2cf2b525-24ca-4693-99a0-364f8a5c24c9 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T07:56:28 TrackingId:4a8b6c79abe243a3a753b14892c87299_G10, SystemTracker:gateway5, Timestamp:2025-10-27T07:56:28 +2025-10-27 16:56:28,357 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'd8ad9755-1457-4010-9b6e-5796106dddb1' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +INFO: 127.0.0.1:64478 - "GET / HTTP/1.1" 200 OK +INFO: 127.0.0.1:64540 - "OPTIONS /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 400 Bad Request +2025-10-27 16:56:58,387 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'd8ad9755-1457-4010-9b6e-5796106dddb1' has claimed partition '0' +2025-10-27 16:56:58,388 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 16:56:58,445 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:56:58,463 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:58,463 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:58,464 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:58,464 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:58,464 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:58,465 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:58,465 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:58,465 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:58,476 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:58,527 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:58,578 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:58,630 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:58,630 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:58,682 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:58,682 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:58,682 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:56:58,888 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:59,392 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 16:56:59,392 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:59,393 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 16:56:59,444 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:59,496 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:59,496 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:59,497 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:59,498 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:59,501 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:59,501 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:59,502 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:56:59,502 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:56:59,502 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:59,503 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:56:59,503 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:59,503 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:56:59,503 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:56:59,511 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'd8ad9755-1457-4010-9b6e-5796106dddb1' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:56:58\nReference:498e817b-ab02-4cb8-b89c-de104a008916\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T07:56:59 TrackingId:5adceb1c6eb94c568a0621f417ea3787_G21, SystemTracker:gateway5, Timestamp:2025-10-27T07:56:59"). +2025-10-27 16:56:59,511 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:56:58 +Reference:498e817b-ab02-4cb8-b89c-de104a008916 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T07:56:59 TrackingId:5adceb1c6eb94c568a0621f417ea3787_G21, SystemTracker:gateway5, Timestamp:2025-10-27T07:56:59 +2025-10-27 16:56:59,511 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'd8ad9755-1457-4010-9b6e-5796106dddb1' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +2025-10-27 16:57:01,004 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'main.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +2025-10-27 16:57:01,147 - main - INFO - AI Service 종료 +INFO: Application shutdown complete. +INFO: Finished server process [5216] +2025-10-27 16:57:01,148 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'd8ad9755-1457-4010-9b6e-5796106dddb1' tasks have been cancelled. +2025-10-27 16:57:01,148 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'd8ad9755-1457-4010-9b6e-5796106dddb1' has been stopped. +2025-10-27 16:57:01,148 - app.services.redis_service - INFO - Redis 연결 종료 +INFO: Started server process [5285] +INFO: Waiting for application startup. +2025-10-27 16:57:01,645 - main - INFO - ============================================================ +2025-10-27 16:57:01,645 - main - INFO - AI Service (Python) 시작 - Port: 8086 +2025-10-27 16:57:01,645 - main - INFO - Claude Model: claude-3-5-sonnet-20241022 +2025-10-27 16:57:01,645 - main - INFO - Redis: 20.249.177.114:6379 +2025-10-27 16:57:01,645 - main - INFO - ============================================================ +2025-10-27 16:57:01,645 - main - INFO - Event Hub 리스너 백그라운드 시작... +2025-10-27 16:57:01,645 - app.services.eventhub_service - INFO - Event Hub 리스너 시작 +INFO: Application startup complete. +2025-10-27 16:57:01,680 - app.services.redis_service - INFO - Redis 연결 성공 +2025-10-27 16:57:01,680 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'eaf4d6e1-1d77-4786-a0c5-46a0fb009df7' is being started +2025-10-27 16:57:01,718 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:57:01,727 - watchfiles.main - INFO - 3 changes detected +2025-10-27 16:57:01,733 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:01,733 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:01,733 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:01,733 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:01,733 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:01,733 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:01,733 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:01,733 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:01,744 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:01,795 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:01,846 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:01,898 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:01,898 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:01,948 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:01,949 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:01,949 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:57:02,164 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,164 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:02,164 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,164 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:02,175 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,175 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:02,176 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,176 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:02,191 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,191 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:02,191 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,191 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:02,191 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:02,192 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,193 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:02,193 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,193 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:02,194 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'eaf4d6e1-1d77-4786-a0c5-46a0fb009df7' has claimed partition '0' +2025-10-27 16:57:02,194 - azure.eventhub.aio._eventprocessor.event_processor - INFO - start ownership '0', checkpoint None +2025-10-27 16:57:02,272 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: None -> +2025-10-27 16:57:02,291 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:02,292 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:02,292 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:02,292 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:02,292 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,292 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:02,292 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,292 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:02,301 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:02,352 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:02,403 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:02,454 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,454 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:02,505 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:02,505 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:02,505 - azure.eventhub._pyamqp.aio._cbs_async - INFO - CBS completed opening with status: +2025-10-27 16:57:02,712 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:03,217 - azure.eventhub._pyamqp.aio._link_async - INFO - Cannot get source or target. Detaching link +2025-10-27 16:57:03,217 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:03,217 - azure.eventhub._pyamqp.aio._session_async - ERROR - Unable to attach new link: ValueError('Invalid link') +2025-10-27 16:57:03,269 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:03,321 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:03,321 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:03,321 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:03,321 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:03,321 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:03,322 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:03,322 - azure.eventhub._pyamqp.aio._connection_async - INFO - Connection state changed: -> +2025-10-27 16:57:03,322 - azure.eventhub._pyamqp.aio._session_async - INFO - Session state changed: -> +2025-10-27 16:57:03,322 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:03,322 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link sender state changed: -> +2025-10-27 16:57:03,322 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:03,322 - azure.eventhub._pyamqp.aio._management_link_async - INFO - Management link receiver state changed: -> +2025-10-27 16:57:03,322 - azure.eventhub._pyamqp.aio._link_async - INFO - Link state changed: -> +2025-10-27 16:57:03,363 - azure.eventhub.aio._eventprocessor.event_processor - WARNING - EventProcessor instance 'eaf4d6e1-1d77-4786-a0c5-46a0fb009df7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default'. An error occurred while receiving. The exception is ConnectionLostError("At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:57:02\nReference:e43740f8-3462-4cc1-8df9-3941156b9220\nTrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0\nSystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default\nTimestamp:2025-10-27T07:57:03 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T07:57:03"). +2025-10-27 16:57:03,363 - app.services.eventhub_service - ERROR - Event Hub 에러 - Partition: 0, Error: At least one receiver for the endpoint is created with epoch of '0', and so non-epoch receiver is not allowed. Either reconnect with a higher epoch, or make sure all epoch receivers are closed or disconnected. TrackingId:abd872e1-fef7-4e54-a3d1-655839f07e2f_B0, SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766, Timestamp:2025-10-27T07:57:02 +Reference:e43740f8-3462-4cc1-8df9-3941156b9220 +TrackingId:960af1bc-38da-483a-a249-fb509f7ba524_B0 +SystemTracker:hgzero-eventhub-ns:eventhub:hgzero-eventhub-name~32766|$default +Timestamp:2025-10-27T07:57:03 TrackingId:96b29734d6424cf6a253a767a1108d7d_G27, SystemTracker:gateway5, Timestamp:2025-10-27T07:57:03 +2025-10-27 16:57:03,363 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor instance 'eaf4d6e1-1d77-4786-a0c5-46a0fb009df7' of eventhub 'hgzero-eventhub-name' partition '0' consumer group '$Default' is being closed. Reason is: +INFO: Shutting down +INFO: Waiting for application shutdown. +2025-10-27 16:57:10,125 - main - INFO - AI Service 종료 +INFO: Application shutdown complete. +INFO: Finished server process [5285] +2025-10-27 16:57:10,126 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'eaf4d6e1-1d77-4786-a0c5-46a0fb009df7' tasks have been cancelled. +2025-10-27 16:57:10,126 - azure.eventhub.aio._eventprocessor.event_processor - INFO - EventProcessor 'eaf4d6e1-1d77-4786-a0c5-46a0fb009df7' has been stopped. +2025-10-27 16:57:10,126 - app.services.redis_service - INFO - Redis 연결 종료 +INFO: Stopping reloader process [5213] diff --git a/logs/ai-python.log b/logs/ai-python.log new file mode 100644 index 0000000..26bc8ba --- /dev/null +++ b/logs/ai-python.log @@ -0,0 +1,385 @@ +INFO: Will watch for changes in these directories: ['/Users/jominseo/HGZero/ai-python'] +INFO: Uvicorn running on http://0.0.0.0:8087 (Press CTRL+C to quit) +INFO: Started reloader process [32757] using WatchFiles +INFO: Started server process [32759] +INFO: Waiting for application startup. +INFO: Application startup complete. +INFO: 127.0.0.1:49960 - "GET /health HTTP/1.1" 200 OK +INFO: 127.0.0.1:52590 - "GET /health HTTP/1.1" 200 OK +INFO: 127.0.0.1:54439 - "POST /api/v1/transcripts/consolidate HTTP/1.1" 422 Unprocessable Content +2025-10-28 16:43:13,742 - watchfiles.main - INFO - 28 changes detected +WARNING: WatchFiles detected changes in 'app/__init__.py', 'app/services/__init__.py', 'app/prompts/consolidate_prompt.py', 'app/models/transcript.py', 'app/models/response.py', 'app/models/keyword.py', 'app/services/transcript_service.py', 'main.py', 'app/services/claude_service.py', 'app/api/v1/transcripts.py', 'app/models/__init__.py', 'app/models/todo.py', 'app/services/eventhub_service.py', 'app/services/redis_service.py', 'app/config.py', 'app/api/__init__.py', 'app/api/v1/suggestions.py', 'app/api/v1/__init__.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +INFO: Application shutdown complete. +INFO: Finished server process [32759] +Traceback (most recent call last): + File "", line 1, in + from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) + ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 122, in spawn_main + exitcode = _main(fd, parent_sentinel) + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 131, in _main + prepare(preparation_data) + ~~~~~~~^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 246, in prepare + _fixup_main_from_path(data['init_main_from_path']) + ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 297, in _fixup_main_from_path + main_content = runpy.run_path(main_path, + run_name="__mp_main__") + File "", line 287, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "/Users/jominseo/HGZero/ai-python/main.py", line 9, in + from app.config import get_settings +ModuleNotFoundError: No module named 'app.config' +2025-10-28 16:43:14,368 - watchfiles.main - INFO - 3 changes detected +2025-10-28 16:45:19,161 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'main.py'. Reloading... +Traceback (most recent call last): + File "", line 1, in + from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) + ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 122, in spawn_main + exitcode = _main(fd, parent_sentinel) + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 131, in _main + prepare(preparation_data) + ~~~~~~~^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 246, in prepare + _fixup_main_from_path(data['init_main_from_path']) + ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 297, in _fixup_main_from_path + main_content = runpy.run_path(main_path, + run_name="__mp_main__") + File "", line 287, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "/Users/jominseo/HGZero/ai-python/main.py", line 9, in + from app.config import get_settings +ModuleNotFoundError: No module named 'app.config' +2025-10-28 16:45:36,697 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'app/api/v1/suggestions.py'. Reloading... +Traceback (most recent call last): + File "", line 1, in + from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) + ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 122, in spawn_main + exitcode = _main(fd, parent_sentinel) + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 131, in _main + prepare(preparation_data) + ~~~~~~~^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 246, in prepare + _fixup_main_from_path(data['init_main_from_path']) + ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 297, in _fixup_main_from_path + main_content = runpy.run_path(main_path, + run_name="__mp_main__") + File "", line 287, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "/Users/jominseo/HGZero/ai-python/main.py", line 9, in + from app.config import get_settings +ModuleNotFoundError: No module named 'app.config' +2025-10-28 16:45:46,675 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'main.py'. Reloading... +Traceback (most recent call last): + File "", line 1, in + from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) + ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 122, in spawn_main + exitcode = _main(fd, parent_sentinel) + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 131, in _main + prepare(preparation_data) + ~~~~~~~^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 246, in prepare + _fixup_main_from_path(data['init_main_from_path']) + ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 297, in _fixup_main_from_path + main_content = runpy.run_path(main_path, + run_name="__mp_main__") + File "", line 287, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "/Users/jominseo/HGZero/ai-python/main.py", line 9, in + from app.config import get_settings +ModuleNotFoundError: No module named 'app.config' + 127.0.0.1:51583 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51605 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51636 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51648 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51669 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51691 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51724 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51742 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51772 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51793 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51811 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51835 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51855 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51875 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51901 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51927 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51950 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:51980 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52006 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52021 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52049 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52077 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52095 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52130 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52157 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52179 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52225 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52249 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52284 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52316 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52343 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52369 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52393 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52420 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52435 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52457 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52493 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52529 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52581 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52633 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52666 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52716 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52770 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52812 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52859 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52902 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52940 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:52966 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53029 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53081 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53123 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53173 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53201 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53251 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53286 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53331 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53365 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53389 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53440 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53465 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53485 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53523 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53562 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53588 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53626 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53662 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53696 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53728 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53778 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53820 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53865 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53903 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53944 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53964 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:53984 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54017 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54035 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54057 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54079 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54105 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54135 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54177 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54227 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54249 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54269 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54301 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54324 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54370 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54411 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54460 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54483 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54510 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54534 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54558 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54583 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54606 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54636 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54656 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54677 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54701 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54721 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54748 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54767 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54788 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54817 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54839 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54859 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54883 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54895 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54933 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54962 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:54988 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55020 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55042 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55070 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55090 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55129 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55155 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55208 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55229 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55260 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55273 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55317 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55351 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55365 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55388 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55420 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55444 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55466 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55484 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55503 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55526 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55544 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55579 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55597 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55632 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55639 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55666 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55684 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55708 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55735 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55765 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55781 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55812 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55838 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55862 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55888 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55926 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55942 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:55981 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56251 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56299 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56329 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56354 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56370 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56397 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56419 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56444 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56483 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56502 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56530 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56551 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56573 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56595 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56634 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56682 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56721 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56802 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56827 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56844 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56882 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56921 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:56953 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:57003 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:57025 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:57054 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:57079 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:57099 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:57127 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:57153 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:57200 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +INFO: 127.0.0.1:57223 - "GET /api/v1/ai/suggestions/meetings/test-meeting-001/stream HTTP/1.1" 404 Not Found +2025-10-28 16:43:13,721 - watchfiles.main - INFO - 28 changes detected +WARNING: WatchFiles detected changes in 'app/models/keyword.py', 'app/api/v1/__init__.py', 'app/config.py', 'main.py', 'app/services/transcript_service.py', 'app/services/eventhub_service.py', 'app/services/claude_service.py', 'app/models/transcript.py', 'app/api/v1/transcripts.py', 'app/services/redis_service.py', 'app/api/v1/suggestions.py', 'app/__init__.py', 'app/models/todo.py', 'app/models/response.py', 'app/services/__init__.py', 'app/prompts/consolidate_prompt.py', 'app/models/__init__.py', 'app/api/__init__.py'. Reloading... +INFO: Shutting down +INFO: Waiting for application shutdown. +INFO: Application shutdown complete. +INFO: Finished server process [32637] +Traceback (most recent call last): + File "", line 1, in + from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) + ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 122, in spawn_main + exitcode = _main(fd, parent_sentinel) + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 131, in _main + prepare(preparation_data) + ~~~~~~~^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 246, in prepare + _fixup_main_from_path(data['init_main_from_path']) + ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 297, in _fixup_main_from_path + main_content = runpy.run_path(main_path, + run_name="__mp_main__") + File "", line 287, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "/Users/jominseo/HGZero/ai-python/main.py", line 9, in + from app.config import get_settings +ModuleNotFoundError: No module named 'app.config' +2025-10-28 16:43:14,362 - watchfiles.main - INFO - 3 changes detected +2025-10-28 16:45:19,160 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'main.py'. Reloading... +Traceback (most recent call last): + File "", line 1, in + from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) + ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 122, in spawn_main + exitcode = _main(fd, parent_sentinel) + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 131, in _main + prepare(preparation_data) + ~~~~~~~^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 246, in prepare + _fixup_main_from_path(data['init_main_from_path']) + ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 297, in _fixup_main_from_path + main_content = runpy.run_path(main_path, + run_name="__mp_main__") + File "", line 287, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "/Users/jominseo/HGZero/ai-python/main.py", line 9, in + from app.config import get_settings +ModuleNotFoundError: No module named 'app.config' +2025-10-28 16:45:36,697 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'app/api/v1/suggestions.py'. Reloading... +Traceback (most recent call last): + File "", line 1, in + from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) + ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 122, in spawn_main + exitcode = _main(fd, parent_sentinel) + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 131, in _main + prepare(preparation_data) + ~~~~~~~^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 246, in prepare + _fixup_main_from_path(data['init_main_from_path']) + ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 297, in _fixup_main_from_path + main_content = runpy.run_path(main_path, + run_name="__mp_main__") + File "", line 287, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "/Users/jominseo/HGZero/ai-python/main.py", line 9, in + from app.config import get_settings +ModuleNotFoundError: No module named 'app.config' +2025-10-28 16:45:46,663 - watchfiles.main - INFO - 3 changes detected +WARNING: WatchFiles detected changes in 'main.py'. Reloading... +Traceback (most recent call last): + File "", line 1, in + from multiprocessing.spawn import spawn_main; spawn_main(tracker_fd=5, pipe_handle=7) + ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 122, in spawn_main + exitcode = _main(fd, parent_sentinel) + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 131, in _main + prepare(preparation_data) + ~~~~~~~^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 246, in prepare + _fixup_main_from_path(data['init_main_from_path']) + ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/opt/homebrew/Cellar/python@3.13/3.13.7/Frameworks/Python.framework/Versions/3.13/lib/python3.13/multiprocessing/spawn.py", line 297, in _fixup_main_from_path + main_content = runpy.run_path(main_path, + run_name="__mp_main__") + File "", line 287, in run_path + File "", line 98, in _run_module_code + File "", line 88, in _run_code + File "/Users/jominseo/HGZero/ai-python/main.py", line 9, in + from app.config import get_settings +ModuleNotFoundError: No module named 'app.config' diff --git a/logs/api-test-result.log b/logs/api-test-result.log new file mode 100644 index 0000000..7ddd961 --- /dev/null +++ b/logs/api-test-result.log @@ -0,0 +1,2 @@ +curl: option : blank argument where content is expected +curl: try 'curl --help' or 'curl --manual' for more information diff --git a/logs/meeting-service.log b/logs/meeting-service.log new file mode 100644 index 0000000..7635663 --- /dev/null +++ b/logs/meeting-service.log @@ -0,0 +1,3 @@ +[INFO] Project root: /Users/jominseo/HGZero +[INFO] Reading run configuration files... +[ERROR] No execution configurations found diff --git a/logs/stt-restart.log b/logs/stt-restart.log new file mode 100644 index 0000000..7635663 --- /dev/null +++ b/logs/stt-restart.log @@ -0,0 +1,3 @@ +[INFO] Project root: /Users/jominseo/HGZero +[INFO] Reading run configuration files... +[ERROR] No execution configurations found diff --git a/logs/stt-service.log b/logs/stt-service.log new file mode 100644 index 0000000..7635663 --- /dev/null +++ b/logs/stt-service.log @@ -0,0 +1,3 @@ +[INFO] Project root: /Users/jominseo/HGZero +[INFO] Reading run configuration files... +[ERROR] No execution configurations found diff --git a/meeting/QUICK-FIX-GUIDE.md b/meeting/QUICK-FIX-GUIDE.md new file mode 100644 index 0000000..12f2592 --- /dev/null +++ b/meeting/QUICK-FIX-GUIDE.md @@ -0,0 +1,56 @@ +# Minutes Sections 테이블 에러 빠른 해결 가이드 + +## 🚨 발생한 에러 +``` +Caused by: org.postgresql.util.PSQLException: +ERROR: column "id" of relation "minutes_sections" contains null values +``` + +## ✅ 해결 방법 (2단계) + +### 1단계: 데이터베이스 정리 + +IntelliJ에서 다음 중 하나를 실행: + +**방법 A: 직접 SQL 실행** +```sql +DELETE FROM minutes_sections WHERE id IS NULL; +``` + +**방법 B: cleanup-minutes-sections.sql 파일 실행** +1. IntelliJ Database 탭 열기 +2. `meetingdb` 우클릭 → New → Query Console +3. `cleanup-minutes-sections.sql` 파일 내용 복사 & 실행 + +### 2단계: Meeting 서비스 재시작 + +IntelliJ Run Configuration에서 Meeting 서비스 재시작 + +## 📝 수정된 파일 + +1. **test-data-minutes-sections.sql** + - Entity 구조에 맞게 컬럼명 수정 + - `id` 컬럼 추가 (필수) + - `type`, `title`, `order` 등 추가 + - `section_number`, `section_title` 제거 + +2. **cleanup-minutes-sections.sql** + - null id 레코드 삭제 스크립트 + +3. **README-FIX-MINUTES-SECTIONS.md** + - 상세 문제 해결 가이드 + +## 🔍 확인 사항 + +서비스 시작 후 로그 확인: +```bash +tail -f logs/meeting-service.log +``` + +에러가 없으면 성공! 다음 단계로 진행하세요. + +## 📚 참고 + +- Entity: `MinutesSectionEntity.java` +- Repository: `MinutesSectionRepository.java` (필요시 생성) +- Service: `EndMeetingService.java` diff --git a/meeting/README-FIX-MINUTES-SECTIONS.md b/meeting/README-FIX-MINUTES-SECTIONS.md new file mode 100644 index 0000000..b075d99 --- /dev/null +++ b/meeting/README-FIX-MINUTES-SECTIONS.md @@ -0,0 +1,72 @@ +# minutes_sections 테이블 에러 해결 가이드 + +## 문제 상황 +Meeting 서비스 시작 시 다음 에러 발생: +``` +Caused by: org.postgresql.util.PSQLException: ERROR: column "id" of relation "minutes_sections" contains null values +``` + +## 원인 +- `minutes_sections` 테이블에 null id를 가진 레코드가 존재 +- Hibernate가 id 컬럼을 NOT NULL PRIMARY KEY로 변경하려 시도 +- 기존 null 데이터 때문에 ALTER TABLE 실패 + +## 해결 방법 + +### 방법 1: IntelliJ Database 도구 사용 (권장) + +1. IntelliJ에서 Database 탭 열기 +2. `meetingdb` 데이터베이스 연결 +3. Query Console 열기 +4. 다음 SQL 실행: + +```sql +-- null id를 가진 레코드 삭제 +DELETE FROM minutes_sections WHERE id IS NULL; + +-- 결과 확인 +SELECT COUNT(*) FROM minutes_sections; +``` + +### 방법 2: cleanup-minutes-sections.sql 파일 실행 + +IntelliJ Database Console에서 `cleanup-minutes-sections.sql` 파일을 열어서 실행 + +## 실행 후 + +1. Meeting 서비스 재시작 +2. 로그에서 에러가 없는지 확인: + ```bash + tail -f logs/meeting-service.log | grep -i error + ``` +3. 정상 시작되면 테스트 진행 + +## 추가 정보 + +### 테이블 구조 확인 +```sql +SELECT + column_name, + data_type, + is_nullable, + column_default +FROM information_schema.columns +WHERE table_name = 'minutes_sections' +ORDER BY ordinal_position; +``` + +### 현재 데이터 확인 +```sql +SELECT id, minutes_id, type, title FROM minutes_sections LIMIT 10; +``` + +### Flyway 마이그레이션 이력 확인 +```sql +SELECT * FROM flyway_schema_history ORDER BY installed_rank DESC LIMIT 5; +``` + +## 참고사항 + +- 이 에러는 기존 테이블에 데이터가 있는 상태에서 Entity 구조가 변경되어 발생 +- 향후 같은 문제를 방지하려면 Flyway 마이그레이션 파일로 스키마 변경을 관리해야 함 +- 테스트 데이터는 `test-data-minutes-sections.sql` 파일 참조 diff --git a/meeting/check-minutes-table.sql b/meeting/check-minutes-table.sql new file mode 100644 index 0000000..a72dbb6 --- /dev/null +++ b/meeting/check-minutes-table.sql @@ -0,0 +1,18 @@ +-- minutes 테이블 구조 확인 +SELECT + column_name, + data_type, + is_nullable, + column_default +FROM information_schema.columns +WHERE table_name = 'minutes' +ORDER BY ordinal_position; + +-- Primary Key 확인 +SELECT + kcu.column_name +FROM information_schema.table_constraints tc +JOIN information_schema.key_column_usage kcu + ON tc.constraint_name = kcu.constraint_name +WHERE tc.table_name = 'minutes' +AND tc.constraint_type = 'PRIMARY KEY'; diff --git a/meeting/cleanup-minutes-sections.sh b/meeting/cleanup-minutes-sections.sh new file mode 100755 index 0000000..aa209b0 --- /dev/null +++ b/meeting/cleanup-minutes-sections.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +# minutes_sections 테이블 정리 스크립트 +# 목적: null id를 가진 레코드 삭제 + +echo "=========================================" +echo "minutes_sections 테이블 정리 시작" +echo "=========================================" + +# PostgreSQL 연결 정보 +DB_HOST="localhost" +DB_PORT="5432" +DB_NAME="meetingdb" +DB_USER="postgres" + +# 1. 기존 데이터 확인 +echo "" +echo "1. 현재 테이블 상태 확인..." +docker exec -i postgres-meeting psql -U $DB_USER -d $DB_NAME -c "SELECT COUNT(*) as total_rows FROM minutes_sections;" +docker exec -i postgres-meeting psql -U $DB_USER -d $DB_NAME -c "SELECT COUNT(*) as null_id_rows FROM minutes_sections WHERE id IS NULL;" + +# 2. null id를 가진 레코드 삭제 +echo "" +echo "2. null id를 가진 레코드 삭제..." +docker exec -i postgres-meeting psql -U $DB_USER -d $DB_NAME -c "DELETE FROM minutes_sections WHERE id IS NULL;" + +# 3. 정리 완료 확인 +echo "" +echo "3. 테이블 정리 완료. 현재 상태:" +docker exec -i postgres-meeting psql -U $DB_USER -d $DB_NAME -c "SELECT COUNT(*) as remaining_rows FROM minutes_sections;" + +# 4. 테이블 구조 확인 +echo "" +echo "4. 테이블 구조 확인:" +docker exec -i postgres-meeting psql -U $DB_USER -d $DB_NAME -c "\d minutes_sections" + +echo "" +echo "=========================================" +echo "정리 완료! Meeting 서비스를 재시작하세요." +echo "=========================================" diff --git a/meeting/cleanup-minutes-sections.sql b/meeting/cleanup-minutes-sections.sql new file mode 100644 index 0000000..9e5e57c --- /dev/null +++ b/meeting/cleanup-minutes-sections.sql @@ -0,0 +1,26 @@ +-- ======================================== +-- minutes_sections 테이블 정리 SQL +-- ======================================== +-- 목적: null id를 가진 레코드 삭제하여 서비스 시작 가능하게 함 +-- 실행방법: IntelliJ Database 도구에서 실행 + +-- 1. 현재 상태 확인 +SELECT 'Total rows:' as info, COUNT(*) as count FROM minutes_sections +UNION ALL +SELECT 'Null ID rows:', COUNT(*) FROM minutes_sections WHERE id IS NULL; + +-- 2. null id를 가진 레코드 삭제 +DELETE FROM minutes_sections WHERE id IS NULL; + +-- 3. 결과 확인 +SELECT 'Remaining rows:' as info, COUNT(*) as count FROM minutes_sections; + +-- 4. 테이블 구조 확인 +SELECT + column_name, + data_type, + is_nullable, + column_default +FROM information_schema.columns +WHERE table_name = 'minutes_sections' +ORDER BY ordinal_position; diff --git a/meeting/fix-minutes-sections-direct.sql b/meeting/fix-minutes-sections-direct.sql new file mode 100644 index 0000000..d357d3c --- /dev/null +++ b/meeting/fix-minutes-sections-direct.sql @@ -0,0 +1,39 @@ +-- 직접 실행: minutes_sections 테이블 재생성 + +-- 1. 기존 테이블 삭제 +DROP TABLE IF EXISTS minutes_sections CASCADE; + +-- 2. 테이블 재생성 +CREATE TABLE minutes_sections ( + id VARCHAR(50) PRIMARY KEY, + minutes_id VARCHAR(50) NOT NULL, + type VARCHAR(50), + title VARCHAR(200), + content TEXT, + "order" INTEGER, + verified BOOLEAN DEFAULT FALSE, + locked BOOLEAN DEFAULT FALSE, + locked_by VARCHAR(50), + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT fk_minutes_sections_minutes + FOREIGN KEY (minutes_id) REFERENCES minutes(id) + ON DELETE CASCADE +); + +-- 3. 인덱스 생성 +CREATE INDEX idx_minutes_sections_minutes ON minutes_sections(minutes_id); +CREATE INDEX idx_minutes_sections_order ON minutes_sections(minutes_id, "order"); +CREATE INDEX idx_minutes_sections_type ON minutes_sections(type); +CREATE INDEX idx_minutes_sections_verified ON minutes_sections(verified); + +-- 4. 트리거 생성 +DROP TRIGGER IF EXISTS update_minutes_sections_updated_at ON minutes_sections; +CREATE TRIGGER update_minutes_sections_updated_at + BEFORE UPDATE ON minutes_sections + FOR EACH ROW + EXECUTE FUNCTION update_updated_at_column(); + +-- 확인 +SELECT 'minutes_sections 테이블이 성공적으로 생성되었습니다!' as status; diff --git a/meeting/logs/meeting-service.log b/meeting/logs/meeting-service.log index d4b9cdf..88402c9 100644 --- a/meeting/logs/meeting-service.log +++ b/meeting/logs/meeting-service.log @@ -1,2328 +1,1134 @@ - - . ____ _ __ _ _ - /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ -( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ - \\/ ___)| |_)| | | | | || (_| | ) ) ) ) - ' |____| .__|_| |_|_| |_\__, | / / / / - =========|_|==============|___/=/_/_/_/ - - :: Spring Boot :: (v3.3.5) - -2025-10-27 13:55:45 - Starting MeetingApplication using Java 21.0.1 with PID 55198 (/Users/adela/home/workspace/recent/HGZero/meeting/build/libs/meeting.jar started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 13:55:45 - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 13:55:45 - The following 1 profile is active: "dev" -2025-10-27 13:55:46 - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:55:46 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 13:55:46 - Finished Spring Data repository scanning in 103 ms. Found 8 JPA repository interfaces. -2025-10-27 13:55:46 - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:55:46 - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 13:55:46 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:46 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:46 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:46 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:46 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:46 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:46 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:46 - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:46 - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-27 13:55:47 - Tomcat initialized with port 8082 (http) -2025-10-27 13:55:47 - Starting service [Tomcat] -2025-10-27 13:55:47 - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 13:55:47 - Initializing Spring embedded WebApplicationContext -2025-10-27 13:55:47 - Root WebApplicationContext: initialization completed in 1582 ms -2025-10-27 13:55:47 - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 13:55:47 - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 13:55:47 - HHH000026: Second-level cache disabled -2025-10-27 13:55:47 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@35d81657 -2025-10-27 13:55:47 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@35d81657 -2025-10-27 13:55:47 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@35d81657 -2025-10-27 13:55:47 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@42ef5216 -2025-10-27 13:55:47 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@42ef5216 -2025-10-27 13:55:47 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3180aee -2025-10-27 13:55:47 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3180aee -2025-10-27 13:55:47 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@5d94ac8a -2025-10-27 13:55:47 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@5d94ac8a -2025-10-27 13:55:47 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@288b73c1 -2025-10-27 13:55:47 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@288b73c1 -2025-10-27 13:55:47 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@288b73c1 -2025-10-27 13:55:47 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@104cfb24 -2025-10-27 13:55:47 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@104cfb24 -2025-10-27 13:55:47 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@104cfb24 -2025-10-27 13:55:47 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@5340ccb9 -2025-10-27 13:55:47 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@5340ccb9 -2025-10-27 13:55:47 - Adding type registration image -> org.hibernate.type.BasicTypeReference@2bc8caa7 -2025-10-27 13:55:47 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@582ea164 -2025-10-27 13:55:47 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@582ea164 -2025-10-27 13:55:47 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@2fccf49e -2025-10-27 13:55:47 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@7abcc0da -2025-10-27 13:55:47 - Adding type registration short -> org.hibernate.type.BasicTypeReference@174cb0d8 -2025-10-27 13:55:47 - Adding type registration short -> org.hibernate.type.BasicTypeReference@174cb0d8 -2025-10-27 13:55:47 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@174cb0d8 -2025-10-27 13:55:47 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3ac406d4 -2025-10-27 13:55:47 - Adding type registration int -> org.hibernate.type.BasicTypeReference@3ac406d4 -2025-10-27 13:55:47 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3ac406d4 -2025-10-27 13:55:47 - Adding type registration long -> org.hibernate.type.BasicTypeReference@72646d16 -2025-10-27 13:55:47 - Adding type registration long -> org.hibernate.type.BasicTypeReference@72646d16 -2025-10-27 13:55:47 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@72646d16 -2025-10-27 13:55:47 - Adding type registration float -> org.hibernate.type.BasicTypeReference@6ec2d990 -2025-10-27 13:55:47 - Adding type registration float -> org.hibernate.type.BasicTypeReference@6ec2d990 -2025-10-27 13:55:47 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@6ec2d990 -2025-10-27 13:55:47 - Adding type registration double -> org.hibernate.type.BasicTypeReference@1cfa7ee0 -2025-10-27 13:55:47 - Adding type registration double -> org.hibernate.type.BasicTypeReference@1cfa7ee0 -2025-10-27 13:55:47 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@1cfa7ee0 -2025-10-27 13:55:47 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@612290d -2025-10-27 13:55:47 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@612290d -2025-10-27 13:55:47 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@57cff804 -2025-10-27 13:55:47 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@57cff804 -2025-10-27 13:55:47 - Adding type registration character -> org.hibernate.type.BasicTypeReference@2f39b534 -2025-10-27 13:55:47 - Adding type registration char -> org.hibernate.type.BasicTypeReference@2f39b534 -2025-10-27 13:55:47 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@2f39b534 -2025-10-27 13:55:47 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@60fbc34d -2025-10-27 13:55:47 - Adding type registration string -> org.hibernate.type.BasicTypeReference@7736c41e -2025-10-27 13:55:47 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@7736c41e -2025-10-27 13:55:47 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@5f911d24 -2025-10-27 13:55:47 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@3de383f7 -2025-10-27 13:55:47 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3de383f7 -2025-10-27 13:55:47 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@3de383f7 -2025-10-27 13:55:47 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@33ccead -2025-10-27 13:55:47 - Adding type registration text -> org.hibernate.type.BasicTypeReference@42ebece0 -2025-10-27 13:55:47 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@15c4b1a4 -2025-10-27 13:55:47 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@341964d0 -2025-10-27 13:55:47 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@341964d0 -2025-10-27 13:55:47 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@51b59d58 -2025-10-27 13:55:47 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@51b59d58 -2025-10-27 13:55:47 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4ca4f762 -2025-10-27 13:55:47 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@7c5d36c3 -2025-10-27 13:55:47 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@31de27c -2025-10-27 13:55:47 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@7ebfe01a -2025-10-27 13:55:47 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@154b0748 -2025-10-27 13:55:47 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@35c00c -2025-10-27 13:55:47 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@6cd7dc74 -2025-10-27 13:55:47 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@6cd7dc74 -2025-10-27 13:55:47 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@6d695ec4 -2025-10-27 13:55:47 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@6d695ec4 -2025-10-27 13:55:47 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@20556566 -2025-10-27 13:55:47 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@20556566 -2025-10-27 13:55:47 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@e4ef4c0 -2025-10-27 13:55:47 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@e4ef4c0 -2025-10-27 13:55:47 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@5ca8bd01 -2025-10-27 13:55:47 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@5ca8bd01 -2025-10-27 13:55:47 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7b10472e -2025-10-27 13:55:47 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@70e5737f -2025-10-27 13:55:47 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@9746157 -2025-10-27 13:55:47 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@9746157 -2025-10-27 13:55:47 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@10ad95cd -2025-10-27 13:55:47 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@69fd99c1 -2025-10-27 13:55:47 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@32d8710a -2025-10-27 13:55:47 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@180cc0df -2025-10-27 13:55:47 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@180cc0df -2025-10-27 13:55:47 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@64f33dee -2025-10-27 13:55:47 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@61c58320 -2025-10-27 13:55:47 - Adding type registration date -> org.hibernate.type.BasicTypeReference@10e4ee33 -2025-10-27 13:55:47 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@10e4ee33 -2025-10-27 13:55:47 - Adding type registration time -> org.hibernate.type.BasicTypeReference@6e90cec8 -2025-10-27 13:55:47 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@6e90cec8 -2025-10-27 13:55:47 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@13f182b9 -2025-10-27 13:55:47 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@13f182b9 -2025-10-27 13:55:47 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@13f182b9 -2025-10-27 13:55:47 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@5ee0cf64 -2025-10-27 13:55:47 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@5ee0cf64 -2025-10-27 13:55:47 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@5ee0cf64 -2025-10-27 13:55:47 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@69c227fd -2025-10-27 13:55:47 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@14c5283 -2025-10-27 13:55:47 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@1eb7ec59 -2025-10-27 13:55:47 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@1eb7ec59 -2025-10-27 13:55:47 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@46748b04 -2025-10-27 13:55:47 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@46748b04 -2025-10-27 13:55:47 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@46748b04 -2025-10-27 13:55:47 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3e71a1f8 -2025-10-27 13:55:47 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@5d4a34ff -2025-10-27 13:55:47 - Adding type registration class -> org.hibernate.type.BasicTypeReference@7cbede2b -2025-10-27 13:55:47 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@7cbede2b -2025-10-27 13:55:47 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@1ef04613 -2025-10-27 13:55:47 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@1ef04613 -2025-10-27 13:55:47 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@1ef04613 -2025-10-27 13:55:47 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@2d3d4a54 -2025-10-27 13:55:47 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@2d3d4a54 -2025-10-27 13:55:47 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@215c6ec0 -2025-10-27 13:55:47 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@215c6ec0 -2025-10-27 13:55:47 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@2b19b346 -2025-10-27 13:55:47 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@2b19b346 -2025-10-27 13:55:47 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@37c5b8e8 -2025-10-27 13:55:47 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@37c5b8e8 -2025-10-27 13:55:47 - Adding type registration url -> org.hibernate.type.BasicTypeReference@706d2bae -2025-10-27 13:55:47 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@706d2bae -2025-10-27 13:55:47 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@3205610d -2025-10-27 13:55:47 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@54e06788 -2025-10-27 13:55:47 - Adding type registration object -> org.hibernate.type.JavaObjectType@69419d59 -2025-10-27 13:55:47 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@69419d59 -2025-10-27 13:55:47 - Adding type registration null -> org.hibernate.type.NullType@838e109 -2025-10-27 13:55:47 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@7474196 -2025-10-27 13:55:47 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@18209303 -2025-10-27 13:55:47 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@57df09a7 -2025-10-27 13:55:47 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@6aa9a93b -2025-10-27 13:55:47 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@81dfdee -2025-10-27 13:55:47 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@14b9df65 -2025-10-27 13:55:47 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@3b046e64 -2025-10-27 13:55:47 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1c43e84e -2025-10-27 13:55:48 - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 13:55:48 - HikariPool-1 - Starting... -2025-10-27 13:55:48 - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@1c528f2f -2025-10-27 13:55:48 - HikariPool-1 - Start completed. -2025-10-27 13:55:48 - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 13:55:48 - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4a36a35d) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@52ba21e4) -2025-10-27 13:55:48 - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@558ed473) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@514f2020) -2025-10-27 13:55:48 - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 13:55:48 - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 13:55:48 - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@44580de0 -2025-10-27 13:55:48 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@44580de0 -2025-10-27 13:55:48 - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@69419d59` -2025-10-27 13:55:48 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 13:55:48 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:55:48 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:55:48 - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:55:48 - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:55:48 - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:55:48 - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:55:48 - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:55:48 - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:55:48 - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:55:48 - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:55:48 - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:55:48 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@712c9bcf] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@3c34c491] -2025-10-27 13:55:49 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 13:55:49 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@712c9bcf] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@2ea8f277] -2025-10-27 13:55:49 - +2025-10-29 09:07:19 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 23.0.2 with PID 47022 (/Users/jominseo/HGZero/meeting/build/classes/java/main started by jominseo in /Users/jominseo/HGZero/meeting) +2025-10-29 09:07:19 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 +2025-10-29 09:07:19 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 45 ms. Found 9 JPA repository interfaces. +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.AgendaSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:07:19 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2025-10-29 09:07:20 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) +2025-10-29 09:07:20 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2025-10-29 09:07:20 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] +2025-10-29 09:07:20 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2025-10-29 09:07:20 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 757 ms +2025-10-29 09:07:20 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] +2025-10-29 09:07:20 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final +2025-10-29 09:07:20 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@fe156f4 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@fe156f4 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@fe156f4 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@79b4cff +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@79b4cff +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@58ac0823 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@58ac0823 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@2d705998 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@2d705998 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@28a3fc34 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@28a3fc34 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@28a3fc34 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@7582a16b +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@7582a16b +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@7582a16b +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@4dd752e8 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@4dd752e8 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@62c46e53 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@55317c63 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@55317c63 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@35d81657 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@42ef5216 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@3180aee +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@3180aee +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@3180aee +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@5d94ac8a +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@5d94ac8a +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@5d94ac8a +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@288b73c1 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@288b73c1 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@288b73c1 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@104cfb24 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@104cfb24 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@104cfb24 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@5340ccb9 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@5340ccb9 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@5340ccb9 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@2bc8caa7 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@2bc8caa7 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@582ea164 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@582ea164 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@2fccf49e +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@2fccf49e +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@2fccf49e +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@7abcc0da +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@174cb0d8 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@174cb0d8 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@3ac406d4 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@72646d16 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@72646d16 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@72646d16 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@6ec2d990 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@1cfa7ee0 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@612290d +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@57cff804 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@57cff804 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@2f39b534 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@2f39b534 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@60fbc34d +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@7736c41e +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@5f911d24 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@3de383f7 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@33ccead +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@42ebece0 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@15c4b1a4 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@15c4b1a4 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@341964d0 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@341964d0 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@51b59d58 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@51b59d58 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@4ca4f762 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@4ca4f762 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c5d36c3 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c5d36c3 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@31de27c +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7ebfe01a +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@154b0748 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@154b0748 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@35c00c +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6cd7dc74 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6d695ec4 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@20556566 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@20556566 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@e4ef4c0 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5ca8bd01 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@7b10472e +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@7b10472e +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@70e5737f +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@70e5737f +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@9746157 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@9746157 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@9746157 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@10ad95cd +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@10ad95cd +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@10ad95cd +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@69fd99c1 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@32d8710a +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@180cc0df +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@180cc0df +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@64f33dee +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@64f33dee +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@64f33dee +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@61c58320 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@10e4ee33 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@6e90cec8 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@6e90cec8 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@13f182b9 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@13f182b9 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@13f182b9 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@5ee0cf64 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@5ee0cf64 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@69c227fd +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@69c227fd +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@14c5283 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@14c5283 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@1eb7ec59 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@1eb7ec59 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@46748b04 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@46748b04 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@3e71a1f8 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@5d4a34ff +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@4b916cc2 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4b916cc2 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@96075c0 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@2337bf27 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@43719e98 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@49353d43 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@57e57dc5 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@5bba9949 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@147059f8 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@744fb110 +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@838e109 +2025-10-29 09:07:20 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer +2025-10-29 09:07:20 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2025-10-29 09:07:20 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@32c8d67 +2025-10-29 09:07:20 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2025-10-29 09:07:20 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) +2025-10-29 09:07:20 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@2ad6aeb8) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4e35a219) +2025-10-29 09:07:20 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@7772ec28) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@14d513ca) +2025-10-29 09:07:20 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) +2025-10-29 09:07:20 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@9734cae +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@9734cae +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@4b916cc2` +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:07:20 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:07:20 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4d6027be] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@475eb4fd] +2025-10-29 09:07:21 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) +2025-10-29 09:07:21 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4d6027be] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@38293d23] +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column agenda_number set data type integer +2025-10-29 09:07:21 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column agenda_number set data type integer" via JDBC [ERROR: column "agenda_number" cannot be cast automatically to type integer + Hint: You might need to specify "USING agenda_number::integer".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column agenda_number set data type integer" via JDBC [ERROR: column "agenda_number" cannot be cast automatically to type integer + Hint: You might need to specify "USING agenda_number::integer".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "agenda_number" cannot be cast automatically to type integer + Hint: You might need to specify "USING agenda_number::integer". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column ai_summary_short set data type TEXT +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column decisions set data type json +2025-10-29 09:07:21 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column decisions set data type json" via JDBC [ERROR: column "decisions" cannot be cast automatically to type json + Hint: You might need to specify "USING decisions::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column decisions set data type json" via JDBC [ERROR: column "decisions" cannot be cast automatically to type json + Hint: You might need to specify "USING decisions::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "decisions" cannot be cast automatically to type json + Hint: You might need to specify "USING decisions::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column discussions set data type TEXT +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column opinions set data type json +2025-10-29 09:07:21 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column opinions set data type json" via JDBC [ERROR: column "opinions" cannot be cast automatically to type json + Hint: You might need to specify "USING opinions::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column opinions set data type json" via JDBC [ERROR: column "opinions" cannot be cast automatically to type json + Hint: You might need to specify "USING opinions::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "opinions" cannot be cast automatically to type json + Hint: You might need to specify "USING opinions::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column pending_items set data type json +2025-10-29 09:07:21 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column pending_items set data type json" via JDBC [ERROR: column "pending_items" cannot be cast automatically to type json + Hint: You might need to specify "USING pending_items::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column pending_items set data type json" via JDBC [ERROR: column "pending_items" cannot be cast automatically to type json + Hint: You might need to specify "USING pending_items::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "pending_items" cannot be cast automatically to type json + Hint: You might need to specify "USING pending_items::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column todos set data type json +2025-10-29 09:07:21 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column todos set data type json" via JDBC [ERROR: column "todos" cannot be cast automatically to type json + Hint: You might need to specify "USING todos::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column todos set data type json" via JDBC [ERROR: column "todos" cannot be cast automatically to type json + Hint: You might need to specify "USING todos::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "todos" cannot be cast automatically to type json + Hint: You might need to specify "USING todos::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - alter table if exists meeting_analysis alter column agenda_analyses set data type TEXT -Hibernate: - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 13:55:49 - +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - alter table if exists meetings alter column description set data type TEXT -Hibernate: - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 13:55:49 - +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - alter table if exists minutes_sections alter column content set data type TEXT -Hibernate: +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 13:55:49 - + alter column minutes_id set data type varchar(50) +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - alter table if exists templates alter column description set data type TEXT -Hibernate: - alter table if exists templates - alter column description set data type TEXT -2025-10-27 13:55:49 - +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - alter table if exists templates alter column sections set data type TEXT -Hibernate: - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 13:55:49 - +2025-10-29 09:07:21 [main] DEBUG org.hibernate.SQL - alter table if exists todos alter column description set data type TEXT -Hibernate: - alter table if exists todos - alter column description set data type TEXT -2025-10-27 13:55:49 - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@2ea8f277] for TypeConfiguration -2025-10-27 13:55:49 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 13:55:50 - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 13:55:50 - ObjectMapper 설정 완료 -2025-10-27 13:55:50 - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 13:55:50 - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 13:55:50 - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 13:55:50 - RedisTemplate 설정 완료 -2025-10-27 13:55:51 - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 13:55:51 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 13:55:51 - +2025-10-29 09:07:21 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@38293d23] for TypeConfiguration +2025-10-29 09:07:21 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' +2025-10-29 09:07:21 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. +2025-10-29 09:07:21 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 +2025-10-29 09:07:21 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) +2025-10-29 09:07:21 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 +2025-10-29 09:07:21 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library +2025-10-29 09:07:22 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 +2025-10-29 09:07:22 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name +2025-10-29 09:07:22 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name +2025-10-29 09:07:22 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_c08163_1761696442094"} +2025-10-29 09:07:22 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} +2025-10-29 09:07:22 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2025-10-29 09:07:22 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - -Using generated security password: cea49d21-a529-4af7-810c-777f6d83bd4b +Using generated security password: e4ea43cd-d02a-456e-9ebd-eb3c352a5407 This generated password is for development use only. Your security configuration must be updated before running your application in production. -2025-10-27 13:55:52 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 13:55:52 - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 13:55:52 - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 13:55:52 - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 13:55:53 - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 13:55:53 - Started MeetingApplication in 7.497 seconds (process running for 7.897) -ng type registration imm_calendar -> org.hibernate.type.BasicTypeReference@6aa9a93b -2025-10-27 13:55:47 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@81dfdee -2025-10-27 13:55:47 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@14b9df65 -2025-10-27 13:55:47 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@3b046e64 -2025-10-27 13:55:47 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1c43e84e -2025-10-27 13:55:48 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 13:55:48 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 13:55:48 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@1c528f2f -2025-10-27 13:55:48 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 13:55:48 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 13:55:48 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4a36a35d) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@52ba21e4) -2025-10-27 13:55:48 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@558ed473) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@514f2020) -2025-10-27 13:55:48 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 13:55:48 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@44580de0 -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@44580de0 -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@69419d59` -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:55:48 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:55:48 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@712c9bcf] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@3c34c491] -2025-10-27 13:55:49 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 13:55:49 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@712c9bcf] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@2ea8f277] -2025-10-27 13:55:49 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:07:22 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager +2025-10-29 09:07:22 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} +2025-10-29 09:07:22 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' +2025-10-29 09:07:22 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter +2025-10-29 09:07:22 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) +2025-10-29 09:07:22 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' +2025-10-29 09:07:22 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 3.336 seconds (process running for 3.449) +2025-10-29 09:08:02 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} +2025-10-29 09:08:02 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_c08163_1761696442094","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} +2025-10-29 09:08:02 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} +2025-10-29 09:08:02 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' +2025-10-29 09:08:02 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@38293d23] for TypeConfiguration +2025-10-29 09:08:02 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@18b96884] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@38293d23] +2025-10-29 09:08:02 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2025-10-29 09:08:02 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2025-10-29 09:08:03 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 23.0.2 with PID 47140 (/Users/jominseo/HGZero/meeting/build/classes/java/main started by jominseo in /Users/jominseo/HGZero/meeting) +2025-10-29 09:08:03 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 +2025-10-29 09:08:03 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 41 ms. Found 9 JPA repository interfaces. +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.AgendaSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 Redis repository interfaces. +2025-10-29 09:08:03 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) +2025-10-29 09:08:03 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2025-10-29 09:08:03 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] +2025-10-29 09:08:04 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2025-10-29 09:08:04 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 697 ms +2025-10-29 09:08:04 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] +2025-10-29 09:08:04 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final +2025-10-29 09:08:04 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3cfab340 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3cfab340 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3cfab340 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3387ab0 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3387ab0 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@470f0637 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@470f0637 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@6b278b17 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@6b278b17 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@2ae5580 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@2ae5580 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@2ae5580 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@4203529f +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@4203529f +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@4203529f +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@7d82ca56 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@7d82ca56 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@2aaa89c2 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@5a58db42 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@5a58db42 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@217fd3c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@69ac5752 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1736273c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1736273c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@1736273c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@ba86c53 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@ba86c53 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@ba86c53 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@36eb8e07 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@36eb8e07 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@36eb8e07 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3df6494f +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3df6494f +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3df6494f +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@1b5f960a +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@1b5f960a +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@1b5f960a +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@53ddabc6 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@53ddabc6 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@39ac8c0c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@39ac8c0c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@361f1647 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@361f1647 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@361f1647 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@51172948 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@6f2a3b37 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@6f2a3b37 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@323b0632 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@7cd8831c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@7cd8831c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@7cd8831c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@146db8a6 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@2a20da9f +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@40c0437f +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@78b8f818 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@78b8f818 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1e9d721 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1e9d721 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2d3111a1 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@6f2864c3 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@50ef2906 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@1f70bce5 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@3ae91ab3 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@16cb6f51 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@3fc5d397 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@3fc5d397 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@25c8c71e +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@25c8c71e +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@57867d96 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@57867d96 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@1a7a21d0 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@1a7a21d0 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@bb21063 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@bb21063 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6821c63c +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@c2f7c63 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@4790b897 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@4790b897 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@5cba890e +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3a4cb483 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4d770bcd +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@fe156f4 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@fe156f4 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@79b4cff +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@58ac0823 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@2d705998 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@2d705998 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@28a3fc34 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@28a3fc34 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@7582a16b +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@7582a16b +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@7582a16b +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4dd752e8 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4dd752e8 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4dd752e8 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@62c46e53 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@55317c63 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@35d81657 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@35d81657 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@42ef5216 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@42ef5216 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@42ef5216 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3180aee +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@5d94ac8a +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@288b73c1 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@288b73c1 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@104cfb24 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@104cfb24 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@104cfb24 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@5340ccb9 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@5340ccb9 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2bc8caa7 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2bc8caa7 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@582ea164 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@582ea164 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2fccf49e +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2fccf49e +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@7abcc0da +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@7abcc0da +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@174cb0d8 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@3ac406d4 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@1835b783 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1835b783 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@73852720 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@22854f2b +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@5ddf5118 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@7b9d1a4 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@fcd3a6f +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@7845ee8a +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@5f35370b +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@16c8e9b8 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@7030b74c +2025-10-29 09:08:04 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer +2025-10-29 09:08:04 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2025-10-29 09:08:04 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@5e663ab +2025-10-29 09:08:04 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2025-10-29 09:08:04 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) +2025-10-29 09:08:04 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4f0cdd0f) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@22ea6051) +2025-10-29 09:08:04 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@539bb233) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@21b2579d) +2025-10-29 09:08:04 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) +2025-10-29 09:08:04 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@37d3e740 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@37d3e740 +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@1835b783` +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:08:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:08:04 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6cb417fc] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@239bc43f] +2025-10-29 09:08:04 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) +2025-10-29 09:08:04 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6cb417fc] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@93cc5eb] +2025-10-29 09:08:04 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column agenda_number set data type integer +2025-10-29 09:08:04 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column agenda_number set data type integer" via JDBC [ERROR: column "agenda_number" cannot be cast automatically to type integer + Hint: You might need to specify "USING agenda_number::integer".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column agenda_number set data type integer" via JDBC [ERROR: column "agenda_number" cannot be cast automatically to type integer + Hint: You might need to specify "USING agenda_number::integer".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "agenda_number" cannot be cast automatically to type integer + Hint: You might need to specify "USING agenda_number::integer". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:04 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column ai_summary_short set data type TEXT +2025-10-29 09:08:04 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column decisions set data type json +2025-10-29 09:08:04 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column decisions set data type json" via JDBC [ERROR: column "decisions" cannot be cast automatically to type json + Hint: You might need to specify "USING decisions::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column decisions set data type json" via JDBC [ERROR: column "decisions" cannot be cast automatically to type json + Hint: You might need to specify "USING decisions::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "decisions" cannot be cast automatically to type json + Hint: You might need to specify "USING decisions::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:04 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column discussions set data type TEXT +2025-10-29 09:08:04 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column opinions set data type json +2025-10-29 09:08:04 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column opinions set data type json" via JDBC [ERROR: column "opinions" cannot be cast automatically to type json + Hint: You might need to specify "USING opinions::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column opinions set data type json" via JDBC [ERROR: column "opinions" cannot be cast automatically to type json + Hint: You might need to specify "USING opinions::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "opinions" cannot be cast automatically to type json + Hint: You might need to specify "USING opinions::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:04 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column pending_items set data type json +2025-10-29 09:08:04 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column pending_items set data type json" via JDBC [ERROR: column "pending_items" cannot be cast automatically to type json + Hint: You might need to specify "USING pending_items::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column pending_items set data type json" via JDBC [ERROR: column "pending_items" cannot be cast automatically to type json + Hint: You might need to specify "USING pending_items::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "pending_items" cannot be cast automatically to type json + Hint: You might need to specify "USING pending_items::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:04 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column todos set data type json +2025-10-29 09:08:04 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column todos set data type json" via JDBC [ERROR: column "todos" cannot be cast automatically to type json + Hint: You might need to specify "USING todos::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column todos set data type json" via JDBC [ERROR: column "todos" cannot be cast automatically to type json + Hint: You might need to specify "USING todos::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "todos" cannot be cast automatically to type json + Hint: You might need to specify "USING todos::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:04 [main] DEBUG org.hibernate.SQL - alter table if exists meeting_analysis alter column agenda_analyses set data type TEXT -2025-10-27 13:55:49 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:04 [main] DEBUG org.hibernate.SQL - alter table if exists meetings alter column description set data type TEXT -2025-10-27 13:55:49 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:05 [main] DEBUG org.hibernate.SQL - alter table if exists minutes_sections alter column content set data type TEXT -2025-10-27 13:55:49 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:05 [main] DEBUG org.hibernate.SQL - alter table if exists templates alter column description set data type TEXT -2025-10-27 13:55:49 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:05 [main] DEBUG org.hibernate.SQL - alter table if exists templates alter column sections set data type TEXT -2025-10-27 13:55:49 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:05 [main] DEBUG org.hibernate.SQL - alter table if exists todos alter column description set data type TEXT -2025-10-27 13:55:49 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@2ea8f277] for TypeConfiguration -2025-10-27 13:55:49 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 13:55:50 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 13:55:50 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 13:55:50 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 13:55:50 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 13:55:50 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 13:55:50 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 13:55:51 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 13:55:51 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 13:55:51 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - +2025-10-29 09:08:05 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@93cc5eb] for TypeConfiguration +2025-10-29 09:08:05 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' +2025-10-29 09:08:05 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. +2025-10-29 09:08:05 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 +2025-10-29 09:08:05 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) +2025-10-29 09:08:05 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 +2025-10-29 09:08:05 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library +2025-10-29 09:08:05 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 +2025-10-29 09:08:05 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name +2025-10-29 09:08:05 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name +2025-10-29 09:08:05 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_201291_1761696485816"} +2025-10-29 09:08:05 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} +2025-10-29 09:08:05 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2025-10-29 09:08:05 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - -Using generated security password: cea49d21-a529-4af7-810c-777f6d83bd4b +Using generated security password: 87731204-9cad-4d1d-8545-4815a54f6c77 This generated password is for development use only. Your security configuration must be updated before running your application in production. -2025-10-27 13:55:52 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 13:55:52 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 13:55:52 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 13:55:52 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 13:55:53 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 13:55:53 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 7.497 seconds (process running for 7.897) -2025-10-27 13:55:54 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 55253 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 13:55:54 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 13:55:54 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 13:55:54 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:55:54 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 13:55:54 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 70 ms. Found 8 JPA repository interfaces. -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:55:55 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 13 ms. Found 0 Redis repository interfaces. -2025-10-27 13:55:55 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 13:55:55 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 13:55:55 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 13:55:55 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 13:55:55 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1154 ms -2025-10-27 13:55:55 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 13:55:55 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 13:55:55 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@62c47480 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@62c47480 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@62c47480 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@7de2bdc7 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@7de2bdc7 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@683ed81b -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@683ed81b -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3c116f26 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3c116f26 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@3b4f1eb -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3b4f1eb -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@18b30951 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@48f4264e -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@533d7c61 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@53c40ed6 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3a6b94b6 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@22ee7fdc -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@1a88d194 -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@6949cead -2025-10-27 13:55:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@fe13916 -2025-10-27 13:55:55 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 13:55:55 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 13:55:56 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@25a2f432 -2025-10-27 13:55:56 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 13:55:56 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 13:55:56 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@5d449307) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@44e7c06b) -2025-10-27 13:55:56 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@24a807a9) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@aca594d) -2025-10-27 13:55:56 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 13:55:56 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@18918d70 -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@18918d70 -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@3b4f1eb` -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:55:56 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:55:56 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6b170692] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@4d4bac56] -2025-10-27 13:55:56 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 13:55:56 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6b170692] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@1912ba29] -2025-10-27 13:55:56 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 13:55:56 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 13:55:56 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 13:55:56 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 13:55:56 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 13:55:56 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 13:55:57 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@1912ba29] for TypeConfiguration -2025-10-27 13:55:57 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 13:55:57 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 13:55:57 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 13:55:57 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 13:55:57 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 13:55:58 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 13:55:58 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 13:55:58 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 13:55:58 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 13:55:58 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_13ec4e_1761540958084"} -2025-10-27 13:55:58 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:55:58 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 13:55:58 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: cee403db-5fcf-422e-9451-94c8afe8e9ef - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 13:55:58 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 13:55:58 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 13:55:58 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 13:55:58 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 13:55:58 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 13:55:59 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop' -2025-10-27 13:55:59 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:55:59 [main] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_13ec4e_1761540958084","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 13:55:59 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:55:59 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 13:55:59 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@1912ba29] for TypeConfiguration -2025-10-27 13:55:59 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@e6fa52c] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@1912ba29] -2025-10-27 13:55:59 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 13:55:59 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 13:55:59 [main] INFO o.s.b.a.l.ConditionEvaluationReportLogger - - -Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled. -2025-10-27 13:55:59 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8082 was already in use. - -Action: - -Identify and stop the process that's listening on port 8082 or configure this application to listen on another port. - -2025-10-27 13:57:15 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 55391 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 13:57:15 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 13:57:15 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 65 ms. Found 8 JPA repository interfaces. -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:16 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 12 ms. Found 0 Redis repository interfaces. -2025-10-27 13:57:16 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 13:57:16 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 13:57:16 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 13:57:16 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 13:57:16 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1119 ms -2025-10-27 13:57:16 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 13:57:17 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 13:57:17 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@7cd25bf5 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@7cd25bf5 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@fe13916 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5ea0a7a9 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@25e353dc -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@234ce7ff -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@780a91d0 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3cfab340 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3387ab0 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@470f0637 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@6b278b17 -2025-10-27 13:57:17 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 13:57:17 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 13:57:17 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@47fc9ce -2025-10-27 13:57:17 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 13:57:17 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 13:57:17 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@3c5bb37d) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@558575fe) -2025-10-27 13:57:17 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@25fcdcc6) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@180fb796) -2025-10-27 13:57:17 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 13:57:17 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@3a012678 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3a012678 -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@7cd25bf5` -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:57:17 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:57:17 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1a22c1ba] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@4930213b] -2025-10-27 13:57:18 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 13:57:18 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1a22c1ba] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@66464f27] -2025-10-27 13:57:18 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 13:57:18 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 13:57:18 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 13:57:18 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 13:57:18 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 13:57:18 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 13:57:18 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@66464f27] for TypeConfiguration -2025-10-27 13:57:18 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 13:57:18 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 13:57:19 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 13:57:19 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 13:57:19 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 13:57:19 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 13:57:19 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 13:57:19 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 13:57:19 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 13:57:19 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_29648a_1761541039242"} -2025-10-27 13:57:19 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:57:19 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 13:57:19 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 28f9968c-5288-49a4-b39d-24688cb876d0 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 13:57:19 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 13:57:19 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 13:57:19 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 13:57:19 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 13:57:19 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 13:57:20 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop' -2025-10-27 13:57:20 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:57:20 [main] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_29648a_1761541039242","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 13:57:20 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:57:20 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 13:57:20 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@66464f27] for TypeConfiguration -2025-10-27 13:57:20 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@8b1263c] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@66464f27] -2025-10-27 13:57:20 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 13:57:20 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 13:57:21 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 55402 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 13:57:21 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 13:57:21 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 66 ms. Found 8 JPA repository interfaces. -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 17 ms. Found 0 Redis repository interfaces. -2025-10-27 13:57:22 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 13:57:22 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 13:57:22 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 13:57:22 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 13:57:22 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1065 ms -2025-10-27 13:57:22 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 13:57:22 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 13:57:22 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@7cd25bf5 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@7cd25bf5 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@fe13916 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5ea0a7a9 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@25e353dc -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@234ce7ff -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@780a91d0 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3cfab340 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3387ab0 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@470f0637 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@6b278b17 -2025-10-27 13:57:22 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 13:57:22 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 13:57:22 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@47fc9ce -2025-10-27 13:57:22 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 13:57:22 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 13:57:22 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@3c5bb37d) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@558575fe) -2025-10-27 13:57:22 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@25fcdcc6) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@180fb796) -2025-10-27 13:57:22 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 13:57:22 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@3a012678 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3a012678 -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@7cd25bf5` -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:57:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:57:22 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1a22c1ba] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@4930213b] -2025-10-27 13:57:23 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 13:57:23 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1a22c1ba] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@13198b8e] -2025-10-27 13:57:23 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 13:57:23 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 13:57:23 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 13:57:23 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 13:57:23 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 13:57:23 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 13:57:23 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@13198b8e] for TypeConfiguration -2025-10-27 13:57:23 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 13:57:24 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 13:57:24 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 13:57:24 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 13:57:24 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 13:57:24 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 13:57:24 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 13:57:24 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 13:57:24 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 13:57:24 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_197eff_1761541044670"} -2025-10-27 13:57:24 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:57:24 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 13:57:24 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: dcb6a833-4f8a-4039-b017-fb78ebef5840 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 13:57:24 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 13:57:24 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 13:57:25 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 13:57:25 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 13:57:25 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 13:57:25 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop' -2025-10-27 13:57:25 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:57:25 [main] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_197eff_1761541044670","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 13:57:25 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:57:25 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 13:57:25 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@13198b8e] for TypeConfiguration -2025-10-27 13:57:25 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@ba28d1b] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@13198b8e] -2025-10-27 13:57:25 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 13:57:25 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 13:57:25 [main] INFO o.s.b.a.l.ConditionEvaluationReportLogger - - -Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled. -2025-10-27 13:57:25 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8082 was already in use. - -Action: - -Identify and stop the process that's listening on port 8082 or configure this application to listen on another port. - -2025-10-27 13:57:56 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 55471 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 13:57:56 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 13:57:56 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 73 ms. Found 8 JPA repository interfaces. -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 13:57:57 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 20 ms. Found 0 Redis repository interfaces. -2025-10-27 13:57:58 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 13:57:58 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 13:57:58 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 13:57:58 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 13:57:58 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1112 ms -2025-10-27 13:57:58 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 13:57:58 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 13:57:58 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@5fa9247b -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@5fa9247b -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@1a88d194 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@6949cead -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@5ea0a7a9 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@278c998 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@25e353dc -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@234ce7ff -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@780a91d0 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@3cfab340 -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@3387ab0 -2025-10-27 13:57:58 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 13:57:58 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 13:57:58 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@95f1422 -2025-10-27 13:57:58 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 13:57:58 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 13:57:58 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@35d8ba22) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@3fc051ce) -2025-10-27 13:57:58 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@3c5bb37d) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@558575fe) -2025-10-27 13:57:58 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 13:57:58 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@2681185e -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2681185e -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@5fa9247b` -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:57:58 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 13:57:58 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@430db481] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@15aaf7b1] -2025-10-27 13:57:59 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 13:57:59 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@430db481] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@62b72289] -2025-10-27 13:57:59 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 13:57:59 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 13:57:59 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 13:57:59 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 13:57:59 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 13:57:59 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 13:57:59 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@62b72289] for TypeConfiguration -2025-10-27 13:57:59 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 13:57:59 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 13:58:00 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 13:58:00 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 13:58:00 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 13:58:00 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 13:58:00 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 13:58:00 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 13:58:00 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 13:58:00 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_3bbe04_1761541080277"} -2025-10-27 13:58:00 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 13:58:00 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 13:58:00 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 575571d3-800d-49f6-b121-c9f49f54fa62 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 13:58:00 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 13:58:00 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 13:58:00 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 13:58:00 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 13:58:01 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 13:58:01 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 13:58:01 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 4.544 seconds (process running for 4.708) -2025-10-27 13:59:06 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 13:59:06 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 13:59:06 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms -2025-10-27 13:59:06 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 13:59:06 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 13:59:06 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 13:59:06 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 13:59:06 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 13:59:06 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 13:59:06 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 13:59:06 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 13:59:06 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 13:59:06 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 13:59:06 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 13:59:06 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 13:59:06 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 13:59:06 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 13:59:06 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 13:59:06 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 13:59:06 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 13:59:06 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 13:59:06 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-27 13:59:06 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 13:59:06 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-27 13:59:06 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 13:59:06 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 13:59:06 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 13:59:06 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@1f37878d]] -2025-10-27 13:59:06 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 1ms -2025-10-27 13:59:06 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 13:59:06 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 13:59:06 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 13:59:06 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@363e5f7e], /v3/api-docs, ko_KR] -2025-10-27 13:59:07 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 437 ms -2025-10-27 13:59:07 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 448ms -2025-10-27 13:59:16 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/minutes/1 -2025-10-27 13:59:16 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (1) -2025-10-27 13:59:16 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/minutes/1 -2025-10-27 13:59:16 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 호출 - 파라미터: [1, 1, 1] -2025-10-27 13:59:16 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 요청 - userId: 1, minutesId: 1 -2025-10-27 13:59:16 [http-nio-8082-exec-4] ERROR c.u.h.m.infra.cache.CacheService - 회의록 상세 캐시 저장 실패 - minutesId: 1 -org.springframework.data.redis.RedisSystemException: Error in execution - at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:52) - at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:50) - at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:40) - at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:38) - at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:310) - at org.springframework.data.redis.connection.lettuce.LettuceConnection.await(LettuceConnection.java:1012) - at org.springframework.data.redis.connection.lettuce.LettuceConnection.lambda$doInvoke$3(LettuceConnection.java:447) - at org.springframework.data.redis.connection.lettuce.LettuceInvoker$Synchronizer.invoke(LettuceInvoker.java:673) - at org.springframework.data.redis.connection.lettuce.LettuceInvoker$DefaultSingleInvocationSpec.get(LettuceInvoker.java:589) - at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.setEx(LettuceStringCommands.java:134) - at org.springframework.data.redis.connection.DefaultedRedisConnection.setEx(DefaultedRedisConnection.java:340) - at org.springframework.data.redis.core.DefaultValueOperations$8.potentiallyUsePsetEx(DefaultValueOperations.java:265) - at org.springframework.data.redis.core.DefaultValueOperations$8.doInRedis(DefaultValueOperations.java:258) - at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:411) - at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:378) - at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:97) - at org.springframework.data.redis.core.DefaultValueOperations.set(DefaultValueOperations.java:253) - at org.springframework.data.redis.core.ValueOperations.set(ValueOperations.java:75) - at com.unicorn.hgzero.meeting.infra.cache.CacheService.cacheMinutesDetail(CacheService.java:253) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.cache.CacheService$$SpringCGLIB$$0.cacheMinutesDetail() - at com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail(MinutesController.java:133) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MinutesController$$SpringCGLIB$$0.getMinutesDetail() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -Caused by: io.lettuce.core.RedisReadOnlyException: READONLY You can't write against a read only replica. - at io.lettuce.core.internal.ExceptionFactory.createExecutionException(ExceptionFactory.java:144) - at io.lettuce.core.internal.ExceptionFactory.createExecutionException(ExceptionFactory.java:116) - at io.lettuce.core.protocol.AsyncCommand.completeResult(AsyncCommand.java:120) - at io.lettuce.core.protocol.AsyncCommand.complete(AsyncCommand.java:111) - at io.lettuce.core.protocol.CommandWrapper.complete(CommandWrapper.java:63) - at io.lettuce.core.protocol.CommandHandler.complete(CommandHandler.java:745) - at io.lettuce.core.protocol.CommandHandler.decode(CommandHandler.java:680) - at io.lettuce.core.protocol.CommandHandler.channelRead(CommandHandler.java:597) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -2025-10-27 13:59:16 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 성공 (Mock) - minutesId: 1 -2025-10-27 13:59:16 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 완료 - 실행시간: 238ms -2025-10-27 14:00:00 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 14:00:00 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_3bbe04_1761541080277","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 14:00:00 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 14:00:00 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 14:00:00 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@62b72289] for TypeConfiguration -2025-10-27 14:00:00 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@16075e30] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@62b72289] -2025-10-27 14:00:00 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 14:00:00 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 14:10:20 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 58647 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 14:10:20 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 14:10:20 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 8 JPA repository interfaces. -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:10:21 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 16 ms. Found 0 Redis repository interfaces. -2025-10-27 14:10:22 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 14:10:22 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 14:10:22 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 14:10:22 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 14:10:22 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1263 ms -2025-10-27 14:10:22 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 14:10:22 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 14:10:22 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@7cd25bf5 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@7cd25bf5 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@fe13916 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5ea0a7a9 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@25e353dc -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@234ce7ff -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@780a91d0 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3cfab340 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3387ab0 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@470f0637 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@6b278b17 -2025-10-27 14:10:22 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 14:10:22 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 14:10:22 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@47fc9ce -2025-10-27 14:10:22 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 14:10:22 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 14:10:22 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@3c5bb37d) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@558575fe) -2025-10-27 14:10:22 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@25fcdcc6) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@180fb796) -2025-10-27 14:10:22 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 14:10:22 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@3a012678 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3a012678 -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@7cd25bf5` -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 14:10:22 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 14:10:22 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1a22c1ba] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@4930213b] -2025-10-27 14:10:23 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 14:10:23 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1a22c1ba] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@75392381] -2025-10-27 14:10:23 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 14:10:23 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 14:10:23 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 14:10:23 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 14:10:23 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 14:10:23 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 14:10:23 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@75392381] for TypeConfiguration -2025-10-27 14:10:23 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 14:10:24 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 14:10:24 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 14:10:24 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 14:10:24 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 14:10:24 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 14:10:24 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 14:10:24 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 14:10:24 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 14:10:24 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_114f5d_1761541824680"} -2025-10-27 14:10:24 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 14:10:24 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 14:10:24 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: af733cb2-8fe5-4db5-aa15-17e645dbec1b - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 14:10:24 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 14:10:24 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 14:10:25 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 14:10:25 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 14:10:25 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 14:10:25 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 14:10:25 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.002 seconds (process running for 5.199) -2025-10-27 14:10:32 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 14:10:32 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 14:10:32 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms -2025-10-27 14:10:32 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 14:10:32 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:10:32 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 14:10:32 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 14:10:32 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:10:32 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 14:10:32 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:10:32 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 14:10:32 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 14:10:32 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 14:10:32 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:10:32 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 14:10:32 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 14:10:32 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:10:32 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 14:10:32 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 14:10:32 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:10:32 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 14:10:33 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-27 14:10:33 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:10:33 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-27 14:10:33 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 14:10:33 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:10:33 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 14:10:33 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@7f2aa8c6]] -2025-10-27 14:10:33 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 14:10:33 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 14:10:33 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:10:33 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 14:10:33 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@fb50cd9], /v3/api-docs, ko_KR] -2025-10-27 14:10:33 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 458 ms -2025-10-27 14:10:33 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 470ms -2025-10-27 14:10:43 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/minutes/1 -2025-10-27 14:10:43 [http-nio-8082-exec-5] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (1) -2025-10-27 14:10:43 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/minutes/1 -2025-10-27 14:10:43 [http-nio-8082-exec-5] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 호출 - 파라미터: [1, 1, 1] -2025-10-27 14:10:43 [http-nio-8082-exec-5] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 요청 - userId: 1, minutesId: 1 -2025-10-27 14:10:43 [http-nio-8082-exec-5] ERROR c.u.h.m.infra.cache.CacheService - 회의록 상세 캐시 저장 실패 - minutesId: 1 -org.springframework.data.redis.RedisSystemException: Error in execution - at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:52) - at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:50) - at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:40) - at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:38) - at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:310) - at org.springframework.data.redis.connection.lettuce.LettuceConnection.await(LettuceConnection.java:1012) - at org.springframework.data.redis.connection.lettuce.LettuceConnection.lambda$doInvoke$3(LettuceConnection.java:447) - at org.springframework.data.redis.connection.lettuce.LettuceInvoker$Synchronizer.invoke(LettuceInvoker.java:673) - at org.springframework.data.redis.connection.lettuce.LettuceInvoker$DefaultSingleInvocationSpec.get(LettuceInvoker.java:589) - at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.setEx(LettuceStringCommands.java:134) - at org.springframework.data.redis.connection.DefaultedRedisConnection.setEx(DefaultedRedisConnection.java:340) - at org.springframework.data.redis.core.DefaultValueOperations$8.potentiallyUsePsetEx(DefaultValueOperations.java:265) - at org.springframework.data.redis.core.DefaultValueOperations$8.doInRedis(DefaultValueOperations.java:258) - at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:411) - at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:378) - at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:97) - at org.springframework.data.redis.core.DefaultValueOperations.set(DefaultValueOperations.java:253) - at org.springframework.data.redis.core.ValueOperations.set(ValueOperations.java:75) - at com.unicorn.hgzero.meeting.infra.cache.CacheService.cacheMinutesDetail(CacheService.java:253) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.cache.CacheService$$SpringCGLIB$$0.cacheMinutesDetail() - at com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail(MinutesController.java:133) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MinutesController$$SpringCGLIB$$0.getMinutesDetail() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -Caused by: io.lettuce.core.RedisReadOnlyException: READONLY You can't write against a read only replica. - at io.lettuce.core.internal.ExceptionFactory.createExecutionException(ExceptionFactory.java:144) - at io.lettuce.core.internal.ExceptionFactory.createExecutionException(ExceptionFactory.java:116) - at io.lettuce.core.protocol.AsyncCommand.completeResult(AsyncCommand.java:120) - at io.lettuce.core.protocol.AsyncCommand.complete(AsyncCommand.java:111) - at io.lettuce.core.protocol.CommandWrapper.complete(CommandWrapper.java:63) - at io.lettuce.core.protocol.CommandHandler.complete(CommandHandler.java:745) - at io.lettuce.core.protocol.CommandHandler.decode(CommandHandler.java:680) - at io.lettuce.core.protocol.CommandHandler.channelRead(CommandHandler.java:597) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -2025-10-27 14:10:43 [http-nio-8082-exec-5] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 성공 (Mock) - minutesId: 1 -2025-10-27 14:10:43 [http-nio-8082-exec-5] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 완료 - 실행시간: 254ms -2025-10-27 14:26:07 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 61997 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 14:26:07 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 14:26:07 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 87 ms. Found 8 JPA repository interfaces. -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 14:26:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 15 ms. Found 0 Redis repository interfaces. -2025-10-27 14:26:08 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 14:26:08 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 14:26:08 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 14:26:08 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 14:26:08 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1477 ms -2025-10-27 14:26:09 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 14:26:09 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 14:26:09 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@771afdd5 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@771afdd5 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@771afdd5 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3abadb65 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3abadb65 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@7131d668 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@7131d668 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@46a97805 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@46a97805 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@667dd150 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@667dd150 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@667dd150 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@af04f09 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@af04f09 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@af04f09 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@758d4aa9 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@758d4aa9 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@78e97d4d -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@7096d451 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@7096d451 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@7816454d -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@67d180e4 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@54e18a46 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@54e18a46 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@54e18a46 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@1293f8d7 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@1293f8d7 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@1293f8d7 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@58e5fbe5 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@58e5fbe5 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@58e5fbe5 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@335896bd -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@335896bd -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@335896bd -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@6b33892a -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@6b33892a -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@6b33892a -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@666b91db -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@666b91db -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@11a67420 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@11a67420 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@663cf5d7 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@663cf5d7 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@663cf5d7 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@11b14ae3 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@2b6ee447 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2b6ee447 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@9cb927e -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@8585cdd -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@8585cdd -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@8585cdd -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@1325f967 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@4f356b98 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@1ab85862 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@504c415c -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@504c415c -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@6c9e74f3 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@6c9e74f3 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@813ab53 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@5030997b -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@62c47480 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@7de2bdc7 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@683ed81b -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3c116f26 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@637d111d -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@637d111d -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@2a21cbe7 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@3bb4c2b2 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@1acc768 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@25765a49 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@38caad07 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@15d0b458 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@72a0a60d -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@65930e02 -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@85c3522 -2025-10-27 14:26:09 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 14:26:09 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 14:26:09 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@5186b78a -2025-10-27 14:26:09 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 14:26:09 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 14:26:09 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@448fa659) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@45c28c49) -2025-10-27 14:26:09 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@7c6fc278) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@23ee92df) -2025-10-27 14:26:09 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 14:26:09 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@3f78a5ed -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3f78a5ed -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@637d111d` -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 14:26:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 14:26:09 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@49770ef9] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@15bcecf9] -2025-10-27 14:26:10 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 14:26:10 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@49770ef9] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@440d45c5] -2025-10-27 14:26:10 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 14:26:10 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 14:26:10 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 14:26:10 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 14:26:10 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 14:26:10 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 14:26:10 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@440d45c5] for TypeConfiguration -2025-10-27 14:26:10 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 14:26:10 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 14:26:11 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 14:26:11 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 14:26:11 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 14:26:11 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 14:26:11 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 14:26:11 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 14:26:11 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 14:26:11 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_34d98e_1761542771420"} -2025-10-27 14:26:11 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 14:26:11 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 14:26:11 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 06ee4ea9-5fa3-40c3-beba-c9f756317c36 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 14:26:11 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 14:26:11 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 14:26:11 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 14:26:12 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 14:26:12 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 14:26:12 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 14:26:12 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.307 seconds (process running for 5.642) -2025-10-27 14:32:54 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 14:32:54 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 14:32:54 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms -2025-10-27 14:32:54 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 14:32:54 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:32:54 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 14:32:54 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 14:32:54 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 14:32:54 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 14:32:54 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:32:54 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:32:54 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:32:54 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 14:32:54 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 14:32:54 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 14:32:54 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 14:32:54 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 14:32:54 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:32:54 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 14:32:54 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:32:54 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 14:32:54 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-27 14:32:54 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 14:32:54 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:32:54 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:32:54 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-27 14:32:54 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 14:32:54 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@23a3b25b]] -2025-10-27 14:32:54 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 14:32:54 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 14:32:54 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:32:54 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 14:32:54 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@127bdf91], /v3/api-docs, ko_KR] -2025-10-27 14:32:54 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 470 ms -2025-10-27 14:32:54 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 480ms -2025-10-27 14:33:31 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/1/invite -2025-10-27 14:33:31 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (1) -2025-10-27 14:33:31 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/1/invite -2025-10-27 14:33:31 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 호출 - 파라미터: [1, 1, 1, 1, com.unicorn.hgzero.meeting.infra.dto.request.InviteParticipantRequest@4271bd62] -2025-10-27 14:33:31 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 요청 - meetingId: 1, email: newparticipant@example.com, inviter: 1 -2025-10-27 14:33:31 [http-nio-8082-exec-4] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@5186b78a (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 14:33:31 [http-nio-8082-exec-4] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@577e2617 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 14:33:31 [http-nio-8082-exec-4] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@1446fe7f (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 14:33:31 [http-nio-8082-exec-4] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@47a36c38 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 14:33:31 [http-nio-8082-exec-4] INFO c.u.h.m.biz.service.MeetingService - Inviting participant to meeting: 1, email: newparticipant@example.com -2025-10-27 14:33:31 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - +2025-10-29 09:08:05 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager +2025-10-29 09:08:05 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} +2025-10-29 09:08:06 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' +2025-10-29 09:08:06 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter +2025-10-29 09:08:06 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) +2025-10-29 09:08:06 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' +2025-10-29 09:08:06 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 3.27 seconds (process running for 3.38) +2025-10-29 09:08:08 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2025-10-29 09:08:08 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2025-10-29 09:08:08 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2025-10-29 09:08:08 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-123/end +2025-10-29 09:08:08 [http-nio-8082-exec-1] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: HongGilDong (user-001) +2025-10-29 09:08:08 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-123/end +2025-10-29 09:08:08 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-123, user-001, HongGilDong, hong@example.com] +2025-10-29 09:08:08 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-123, userId: user-001 +2025-10-29 09:08:08 [http-nio-8082-exec-1] INFO c.u.h.m.b.service.EndMeetingService - 회의 종료 시작 - meetingId: meeting-123 +2025-10-29 09:08:08 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - select me1_0.meeting_id, me1_0.created_at, @@ -2342,13 +1148,115 @@ This generated password is for development use only. Your security configuration meetings me1_0 where me1_0.meeting_id=? -2025-10-27 14:33:31 [http-nio-8082-exec-4] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant 실패 - 실행시간: 34ms, 에러: 요청한 리소스를 찾을 수 없습니다. -2025-10-27 14:33:31 [http-nio-8082-exec-4] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 실패 - 실행시간: 63ms, 에러: 요청한 리소스를 찾을 수 없습니다. -2025-10-27 14:33:31 [http-nio-8082-exec-4] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 요청한 리소스를 찾을 수 없습니다.] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 요청한 리소스를 찾을 수 없습니다. - at com.unicorn.hgzero.meeting.biz.service.MeetingService.lambda$inviteParticipant$8(MeetingService.java:529) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant(MeetingService.java:529) +2025-10-29 09:08:08 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - + /* */ select + me1_0.minutes_id, + me1_0.created_at, + me1_0.created_by, + me1_0.finalized_at, + me1_0.finalized_by, + me1_0.meeting_id, + me1_0.status, + me1_0.title, + me1_0.updated_at, + me1_0.user_id, + me1_0.version + from + minutes me1_0 + where + me1_0.meeting_id=? + and me1_0.user_id is not null +2025-10-29 09:08:08 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - + /* SELECT + m + FROM + MinutesSectionEntity m + WHERE + m.minutesId = :minutesId + ORDER BY + m.order ASC */ select + mse1_0.id, + mse1_0.content, + mse1_0.created_at, + mse1_0.locked, + mse1_0.locked_by, + mse1_0.minutes_id, + mse1_0.order, + mse1_0.title, + mse1_0.type, + mse1_0.updated_at, + mse1_0.verified + from + minutes_sections mse1_0 + where + mse1_0.minutes_id=? + order by + mse1_0.order +2025-10-29 09:08:08 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - + /* SELECT + m + FROM + MinutesSectionEntity m + WHERE + m.minutesId = :minutesId + ORDER BY + m.order ASC */ select + mse1_0.id, + mse1_0.content, + mse1_0.created_at, + mse1_0.locked, + mse1_0.locked_by, + mse1_0.minutes_id, + mse1_0.order, + mse1_0.title, + mse1_0.type, + mse1_0.updated_at, + mse1_0.verified + from + minutes_sections mse1_0 + where + mse1_0.minutes_id=? + order by + mse1_0.order +2025-10-29 09:08:08 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - + /* SELECT + m + FROM + MinutesSectionEntity m + WHERE + m.minutesId = :minutesId + ORDER BY + m.order ASC */ select + mse1_0.id, + mse1_0.content, + mse1_0.created_at, + mse1_0.locked, + mse1_0.locked_by, + mse1_0.minutes_id, + mse1_0.order, + mse1_0.title, + mse1_0.type, + mse1_0.updated_at, + mse1_0.verified + from + minutes_sections mse1_0 + where + mse1_0.minutes_id=? + order by + mse1_0.order +2025-10-29 09:08:08 [http-nio-8082-exec-1] INFO c.u.h.m.infra.client.AIServiceClient - AI Service 호출 - 회의록 통합 요약: meeting-123 +2025-10-29 09:08:08 [http-nio-8082-exec-1] ERROR c.u.h.m.infra.client.AIServiceClient - AI Service 호출 실패: 422 Unprocessable Content: "{"detail":[{"type":"missing","loc":["body","participant_minutes",0,"user_id"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",0,"user_name"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",1,"user_id"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",1,"user_name"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",2,"user_id"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}},{"type":"missing","loc":["body","participant_minutes",2,"user_name"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}}]}" +org.springframework.web.client.HttpClientErrorException$UnprocessableEntity: 422 Unprocessable Content: "{"detail":[{"type":"missing","loc":["body","participant_minutes",0,"user_id"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",0,"user_name"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",1,"user_id"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",1,"user_name"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",2,"user_id"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}},{"type":"missing","loc":["body","participant_minutes",2,"user_name"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}}]}" + at org.springframework.web.client.HttpClientErrorException.create(HttpClientErrorException.java:133) + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:183) + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:137) + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:942) + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:891) + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:790) + at org.springframework.web.client.RestTemplate.postForEntity(RestTemplate.java:538) + at com.unicorn.hgzero.meeting.infra.client.AIServiceClient.consolidateMinutes(AIServiceClient.java:59) + at com.unicorn.hgzero.meeting.biz.service.EndMeetingService.endMeeting(EndMeetingService.java:85) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) at java.base/java.lang.reflect.Method.invoke(Method.java:580) at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) @@ -2372,4250 +1280,7 @@ com.unicorn.hgzero.common.exception.BusinessException: 요청한 리소스를 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.inviteParticipant() - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant(MeetingController.java:380) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.inviteParticipant() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 14:33:31 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 14:33:31 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 14:33:31 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-scheduled-2/invite -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-scheduled-2/invite -2025-10-27 14:34:14 [http-nio-8082-exec-6] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 호출 - 파라미터: [meeting-scheduled-2, user-001, 1, test@naver.com, com.unicorn.hgzero.meeting.infra.dto.request.InviteParticipantRequest@50450450] -2025-10-27 14:34:14 [http-nio-8082-exec-6] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 요청 - meetingId: meeting-scheduled-2, email: newparticipant@example.com, inviter: 1 -2025-10-27 14:34:14 [http-nio-8082-exec-6] INFO c.u.h.m.biz.service.MeetingService - Inviting participant to meeting: meeting-scheduled-2, email: newparticipant@example.com -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.user_id, - mpe1_0.meeting_id - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.user_id=? - fetch - first ? rows only -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.user_id, - mpe1_0.meeting_id - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.user_id=? - fetch - first ? rows only -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - ( - mpe1_0.meeting_id, mpe1_0.user_id - ) in ((?, ?)) -2025-10-27 14:34:14 [http-nio-8082-exec-6] DEBUG c.u.h.m.i.gateway.ParticipantGateway - Participant saved: meetingId=meeting-scheduled-2, userId=newparticipant@example.com -2025-10-27 14:34:14 [http-nio-8082-exec-6] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Creating and starting connection.","connectionId":"MF_34d98e_1761542771420","hostName":"hgzero-eventhub-ns.servicebus.windows.net","port":5671} -2025-10-27 14:34:14 [http-nio-8082-exec-6] INFO c.a.c.a.i.ReactorExecutor - {"az.sdk.message":"Starting reactor.","connectionId":"MF_34d98e_1761542771420"} -2025-10-27 14:34:14 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionInit","connectionId":"MF_34d98e_1761542771420","hostName":"hgzero-eventhub-ns.servicebus.windows.net","namespace":"hgzero-eventhub-ns.servicebus.windows.net"} -2025-10-27 14:34:14 [reactor-executor-1] INFO c.a.c.a.i.handler.ReactorHandler - {"az.sdk.message":"reactor.onReactorInit","connectionId":"MF_34d98e_1761542771420"} -2025-10-27 14:34:14 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionLocalOpen","connectionId":"MF_34d98e_1761542771420","errorCondition":null,"errorDescription":null,"hostName":"hgzero-eventhub-ns.servicebus.windows.net"} -2025-10-27 14:34:14 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionBound","connectionId":"MF_34d98e_1761542771420","hostName":"hgzero-eventhub-ns.servicebus.windows.net","peerDetails":"hgzero-eventhub-ns.servicebus.windows.net:5671"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionRemoteOpen","connectionId":"MF_34d98e_1761542771420","hostName":"hgzero-eventhub-ns.servicebus.windows.net","remoteContainer":"6c4c92961f134ddb882f6c5f06d24cff_G0"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is now active.","entityPath":"hgzero-eventhub-name"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteOpen","connectionId":"MF_34d98e_1761542771420","sessionName":"hgzero-eventhub-name","sessionIncCapacity":0,"sessionOutgoingWindow":2147483647} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Setting CBS channel.","connectionId":"MF_34d98e_1761542771420"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteOpen","connectionId":"MF_34d98e_1761542771420","sessionName":"cbs-session","sessionIncCapacity":0,"sessionOutgoingWindow":2147483647} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Emitting new response channel.","connectionId":"MF_34d98e_1761542771420","entityPath":"$cbs","linkName":"cbs"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Setting next AMQP channel.","connectionId":"MF_34d98e_1761542771420","entityPath":"$cbs"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Next AMQP channel received.","connectionId":"MF_34d98e_1761542771420","entityPath":"$cbs","subscriberId":"un_cb1075_1761543255212"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.handler.SendLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_34d98e_1761542771420","linkName":"cbs:sender","entityPath":"$cbs","remoteTarget":"Target{address='$cbs', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Channel is now active.","connectionId":"MF_34d98e_1761542771420","entityPath":"$cbs"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.handler.ReceiveLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_34d98e_1761542771420","entityPath":"$cbs","linkName":"cbs:receiver","remoteSource":"Source{address='$cbs', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=null, outcomes=null, capabilities=null}"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.ActiveClientTokenManager - {"az.sdk.message":"Scheduling refresh token task.","scopes":"amqp://hgzero-eventhub-ns.servicebus.windows.net/hgzero-eventhub-name"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.ReactorSession - {"az.sdk.message":"Creating a new send link.","connectionId":"MF_34d98e_1761542771420","linkName":"hgzero-eventhub-name","sessionName":"hgzero-eventhub-name"} -2025-10-27 14:34:15 [reactor-executor-1] INFO c.a.c.a.i.handler.SendLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_34d98e_1761542771420","linkName":"hgzero-eventhub-name","entityPath":"hgzero-eventhub-name","remoteTarget":"Target{address='hgzero-eventhub-name', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}"} -2025-10-27 14:34:15 [http-nio-8082-exec-6] INFO c.u.h.m.i.e.p.EventHubPublisher - 이벤트 발행 완료: topic=notification, type=NOTIFICATION_REQUEST, partitionKey=newparticipant@example.com -2025-10-27 14:34:15 [http-nio-8082-exec-6] INFO c.u.h.m.biz.service.MeetingService - Meeting invitation event published for email: newparticipant@example.com, meetingId: meeting-scheduled-2 -2025-10-27 14:34:15 [http-nio-8082-exec-6] INFO c.u.h.m.biz.service.MeetingService - Participant invited successfully: newparticipant@example.com to meeting meeting-scheduled-2 -2025-10-27 14:34:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* insert for - com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingParticipantEntity */insert - into - meeting_participants (attended, created_at, invitation_status, updated_at, meeting_id, user_id) - values - (?, ?, ?, ?, ?, ?) -2025-10-27 14:34:15 [http-nio-8082-exec-6] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 완료 - meetingId: meeting-scheduled-2, email: newparticipant@example.com -2025-10-27 14:34:15 [http-nio-8082-exec-6] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 완료 - 실행시간: 638ms -2025-10-27 14:52:14 [parallel-10] INFO c.a.c.a.i.ActiveClientTokenManager - {"az.sdk.message":"Refreshing token.","scopes":"amqp://hgzero-eventhub-ns.servicebus.windows.net/hgzero-eventhub-name"} -2025-10-27 14:54:42 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 14:54:42 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_34d98e_1761542771420","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 14:54:42 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 14:54:42 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 14:54:42 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@440d45c5] for TypeConfiguration -2025-10-27 14:54:42 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@61085954] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@440d45c5] -2025-10-27 14:54:42 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteClose","connectionId":"MF_34d98e_1761542771420","errorCondition":null,"errorDescription":null,"sessionName":"hgzero-eventhub-name"} -2025-10-27 14:54:42 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteClose","connectionId":"MF_34d98e_1761542771420","errorCondition":null,"errorDescription":null,"sessionName":"cbs-session"} -2025-10-27 14:54:42 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 14:54:42 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 15:02:08 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 69860 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 15:02:08 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 15:02:08 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 68 ms. Found 8 JPA repository interfaces. -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:02:09 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 13 ms. Found 0 Redis repository interfaces. -2025-10-27 15:02:10 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 15:02:10 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 15:02:10 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 15:02:10 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 15:02:10 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1211 ms -2025-10-27 15:02:10 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 15:02:10 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 15:02:10 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@22ee7fdc -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@22ee7fdc -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@470f0637 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@6b278b17 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@4203529f -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@7d82ca56 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2aaa89c2 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@5a58db42 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@217fd3c -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@69ac5752 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1736273c -2025-10-27 15:02:10 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 15:02:10 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 15:02:10 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@2b409174 -2025-10-27 15:02:10 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 15:02:10 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 15:02:10 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@29ae2517) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@7a78d2aa) -2025-10-27 15:02:10 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@254d8ef6) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@2a9e7b4d) -2025-10-27 15:02:10 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 15:02:10 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@32f45e15 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@32f45e15 -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@22ee7fdc` -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:02:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:02:10 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@2ad6aeb8] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@4e35a219] -2025-10-27 15:02:11 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 15:02:11 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@2ad6aeb8] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@6e21b6f8] -2025-10-27 15:02:11 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 15:02:11 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 15:02:11 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 15:02:11 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 15:02:11 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 15:02:11 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 15:02:11 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@6e21b6f8] for TypeConfiguration -2025-10-27 15:02:11 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 15:02:11 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 15:02:12 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 15:02:12 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 15:02:12 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 15:02:12 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 15:02:12 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 15:02:12 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 15:02:12 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 15:02:12 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_f3b192_1761544932653"} -2025-10-27 15:02:12 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:02:12 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 15:02:12 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 2fe059f0-a77d-46de-89c1-6c1fcb7dacdc - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 15:02:12 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 15:02:12 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 15:02:13 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 15:02:13 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 15:02:13 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 15:02:13 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 15:02:13 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.096 seconds (process running for 5.272) -2025-10-27 15:02:24 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 15:02:24 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 15:02:24 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 14 ms -2025-10-27 15:02:24 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 15:02:24 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:02:24 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 15:02:24 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 15:02:24 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:02:24 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 15:02:24 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 15:02:24 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:02:24 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 15:02:24 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 15:02:24 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 15:02:24 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:02:24 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 15:02:24 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:02:24 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:02:24 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 15:02:24 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 15:02:24 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 15:02:24 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-27 15:02:24 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 15:02:24 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:02:24 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:02:24 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-27 15:02:24 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 15:02:24 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@4e3c61d2]] -2025-10-27 15:02:24 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 15:02:24 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 15:02:24 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:02:24 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 15:02:24 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@1aa6425c], /v3/api-docs, ko_KR] -2025-10-27 15:02:24 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 451 ms -2025-10-27 15:02:24 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 461ms -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/dashboard -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/dashboard -2025-10-27 15:03:15 [http-nio-8082-exec-6] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.DashboardController.getDashboard 호출 - 파라미터: [user-001, 1, 1] -2025-10-27 15:03:15 [http-nio-8082-exec-6] INFO c.u.h.m.i.c.DashboardController - 대시보드 데이터 조회 요청 - userId: user-001 -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG c.u.h.m.biz.service.DashboardService - Getting dashboard for user: user-001 -2025-10-27 15:03:15 [http-nio-8082-exec-6] INFO c.u.h.m.i.gateway.DashboardGateway - 대시보드 데이터 조회 시작 - userId: user-001 -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - te1_0.todo_id, - te1_0.assignee_id, - te1_0.completed_at, - te1_0.created_at, - te1_0.description, - te1_0.due_date, - te1_0.meeting_id, - te1_0.minutes_id, - te1_0.priority, - te1_0.status, - te1_0.title, - te1_0.updated_at - from - todos te1_0 - where - te1_0.assignee_id=? - and te1_0.status=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.organizer_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:03:15 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - te1_0.todo_id, - te1_0.assignee_id, - te1_0.completed_at, - te1_0.created_at, - te1_0.description, - te1_0.due_date, - te1_0.meeting_id, - te1_0.minutes_id, - te1_0.priority, - te1_0.status, - te1_0.title, - te1_0.updated_at - from - todos te1_0 - where - te1_0.assignee_id=? -2025-10-27 15:03:15 [http-nio-8082-exec-6] INFO c.u.h.m.i.gateway.DashboardGateway - 대시보드 데이터 조회 완료 - userId: user-001, 예정 회의: 0개, 최근 회의록: 5개, 할당 Todo: 2개 -2025-10-27 15:03:15 [http-nio-8082-exec-6] INFO c.u.h.m.i.c.DashboardController - 대시보드 데이터 조회 완료 - userId: user-001 -2025-10-27 15:03:15 [http-nio-8082-exec-6] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.DashboardController.getDashboard 완료 - 실행시간: 504ms -2025-10-27 15:05:04 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:05:04 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_f3b192_1761544932653","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 15:05:04 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:05:04 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 15:05:04 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@6e21b6f8] for TypeConfiguration -2025-10-27 15:05:04 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@6dd64ba7] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@6e21b6f8] -2025-10-27 15:05:04 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 15:05:04 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 15:10:39 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 71044 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 15:10:39 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 15:10:39 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 72 ms. Found 8 JPA repository interfaces. -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:10:39 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-27 15:10:40 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 15:10:40 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 15:10:40 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 15:10:40 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 15:10:40 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1146 ms -2025-10-27 15:10:40 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 15:10:40 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 15:10:40 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@1a88d194 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1a88d194 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@6b278b17 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@2ae5580 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@7d82ca56 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@2aaa89c2 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@5a58db42 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@217fd3c -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@69ac5752 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1736273c -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@ba86c53 -2025-10-27 15:10:40 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 15:10:40 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 15:10:40 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@11939a9f -2025-10-27 15:10:40 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 15:10:40 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 15:10:40 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@7a78d2aa) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@254d8ef6) -2025-10-27 15:10:40 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@2a9e7b4d) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@72406594) -2025-10-27 15:10:40 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 15:10:40 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4e7151b3 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4e7151b3 -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@1a88d194` -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:10:40 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:10:40 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4e35a219] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@7772ec28] -2025-10-27 15:10:41 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 15:10:41 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4e35a219] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@4bd7e0b6] -2025-10-27 15:10:41 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 15:10:41 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 15:10:41 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 15:10:41 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 15:10:41 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 15:10:41 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 15:10:41 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@4bd7e0b6] for TypeConfiguration -2025-10-27 15:10:41 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 15:10:41 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 15:10:42 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 15:10:42 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 15:10:42 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 15:10:42 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 15:10:42 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 15:10:42 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 15:10:42 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 15:10:42 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_0ee099_1761545442532"} -2025-10-27 15:10:42 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:10:42 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 15:10:42 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: fa96bf0e-d1bc-4e74-8adb-934fb333eee7 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 15:10:42 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 15:10:42 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 15:10:43 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 15:10:43 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 15:10:43 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 15:10:43 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 15:10:43 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 4.637 seconds (process running for 4.796) -2025-10-27 15:10:48 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 15:10:48 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 15:10:48 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms -2025-10-27 15:10:48 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 15:10:48 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:10:48 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 15:10:48 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 15:10:48 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:10:48 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 15:10:48 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 15:10:48 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 15:10:48 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 15:10:48 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:10:48 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:10:48 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 15:10:48 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:10:48 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 15:10:48 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 15:10:48 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:10:48 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 15:10:48 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 15:10:48 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-27 15:10:48 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:10:48 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 15:10:48 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-27 15:10:48 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:10:48 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 15:10:48 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@79a6fc20]] -2025-10-27 15:10:48 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 15:10:48 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 15:10:48 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:10:48 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 15:10:48 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@7f4ff65], /v3/api-docs, ko_KR] -2025-10-27 15:10:49 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 419 ms -2025-10-27 15:10:49 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 429ms -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/dashboard -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-003) -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/dashboard -2025-10-27 15:10:59 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.DashboardController.getDashboard 호출 - 파라미터: [user-003, 1, 1] -2025-10-27 15:10:59 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.DashboardController - 대시보드 데이터 조회 요청 - userId: user-003 -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.DashboardService - Getting dashboard for user: user-003 -2025-10-27 15:10:59 [http-nio-8082-exec-4] INFO c.u.h.m.i.gateway.DashboardGateway - 대시보드 데이터 조회 시작 - userId: user-003 -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.organizer_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:10:59 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:11:00 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:11:00 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:11:00 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:11:00 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:11:00 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - te1_0.todo_id, - te1_0.assignee_id, - te1_0.completed_at, - te1_0.created_at, - te1_0.description, - te1_0.due_date, - te1_0.meeting_id, - te1_0.minutes_id, - te1_0.priority, - te1_0.status, - te1_0.title, - te1_0.updated_at - from - todos te1_0 - where - te1_0.assignee_id=? -2025-10-27 15:11:00 [http-nio-8082-exec-4] INFO c.u.h.m.i.gateway.DashboardGateway - 대시보드 데이터 조회 완료 - userId: user-003, 예정 회의: 0개, 최근 회의록: 5개 -2025-10-27 15:11:00 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.DashboardController - 대시보드 데이터 조회 완료 - userId: user-003 -2025-10-27 15:11:00 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.DashboardController.getDashboard 완료 - 실행시간: 442ms -2025-10-27 15:13:51 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:13:51 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_0ee099_1761545442532","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 15:13:51 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:13:51 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 15:13:51 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@4bd7e0b6] for TypeConfiguration -2025-10-27 15:13:51 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@4807d51c] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@4bd7e0b6] -2025-10-27 15:13:51 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 15:13:51 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 15:22:13 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 72762 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 15:22:13 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 15:22:13 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 15:22:13 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:22:13 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 15:22:13 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 88 ms. Found 8 JPA repository interfaces. -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:22:14 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-27 15:22:14 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 15:22:14 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 15:22:14 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 15:22:14 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 15:22:14 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1426 ms -2025-10-27 15:22:14 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 15:22:15 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 15:22:15 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@533d7c61 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@533d7c61 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@780a91d0 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@3cfab340 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@470f0637 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@6b278b17 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2ae5580 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@4203529f -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@7d82ca56 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@2aaa89c2 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@5a58db42 -2025-10-27 15:22:15 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 15:22:15 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 15:22:15 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@2cd2c764 -2025-10-27 15:22:15 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 15:22:15 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 15:22:15 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@7fa8fff) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4423692a) -2025-10-27 15:22:15 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@2175d53f) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@29ae2517) -2025-10-27 15:22:15 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 15:22:15 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@15fd3088 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@15fd3088 -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@533d7c61` -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:22:15 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:22:15 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6130a6f5] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@3fb0d9de] -2025-10-27 15:22:15 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 15:22:15 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6130a6f5] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@6d0d5147] -2025-10-27 15:22:16 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 15:22:16 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 15:22:16 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 15:22:16 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 15:22:16 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 15:22:16 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 15:22:16 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@6d0d5147] for TypeConfiguration -2025-10-27 15:22:16 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 15:22:16 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 15:22:16 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 15:22:16 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 15:22:17 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 15:22:17 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 15:22:17 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 15:22:17 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 15:22:17 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 15:22:17 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_26cb8e_1761546137214"} -2025-10-27 15:22:17 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:22:17 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 15:22:17 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 79930bb8-f461-4257-ab53-825850992133 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 15:22:17 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 15:22:17 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 15:22:17 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 15:22:17 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 15:22:18 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 15:22:18 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 15:22:18 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.457 seconds (process running for 5.791) -2025-10-27 15:22:24 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 15:22:24 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 15:22:24 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms -2025-10-27 15:22:25 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 15:22:25 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:22:25 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 15:22:25 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 15:22:25 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:22:25 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 15:22:25 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 15:22:25 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:22:25 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 15:22:25 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 15:22:25 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 15:22:25 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:22:25 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 15:22:25 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 15:22:25 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:22:25 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:22:25 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 15:22:25 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 15:22:25 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-27 15:22:25 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 15:22:25 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:22:25 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:22:25 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-27 15:22:25 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 15:22:25 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@2227e355]] -2025-10-27 15:22:25 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 15:22:25 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 15:22:25 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:22:25 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 15:22:25 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@7df094d4], /v3/api-docs, ko_KR] -2025-10-27 15:22:25 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 420 ms -2025-10-27 15:22:25 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 429ms -2025-10-27 15:22:35 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/dashboard -2025-10-27 15:22:35 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 15:22:35 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/dashboard -2025-10-27 15:22:35 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.DashboardController.getDashboard 호출 - 파라미터: [user-001, 1, 1] -2025-10-27 15:22:35 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.DashboardController - 대시보드 데이터 조회 요청 - userId: user-001 -2025-10-27 15:22:35 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.DashboardService - Getting dashboard for user: user-001 -2025-10-27 15:22:35 [http-nio-8082-exec-4] INFO c.u.h.m.i.gateway.DashboardGateway - 대시보드 데이터 조회 시작 - userId: user-001 -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.organizer_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:22:36 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - te1_0.todo_id, - te1_0.assignee_id, - te1_0.completed_at, - te1_0.created_at, - te1_0.description, - te1_0.due_date, - te1_0.meeting_id, - te1_0.minutes_id, - te1_0.priority, - te1_0.status, - te1_0.title, - te1_0.updated_at - from - todos te1_0 - where - te1_0.assignee_id=? -2025-10-27 15:22:36 [http-nio-8082-exec-4] INFO c.u.h.m.i.gateway.DashboardGateway - 대시보드 데이터 조회 완료 - userId: user-001, 예정 회의: 3개, 최근 회의록: 5개 -2025-10-27 15:22:36 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.DashboardController - 대시보드 데이터 조회 완료 - userId: user-001 -2025-10-27 15:22:36 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.DashboardController.getDashboard 완료 - 실행시간: 558ms -2025-10-27 15:26:09 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 15:26:09 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:26:09 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 15:26:09 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 15:26:09 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:26:09 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 15:26:09 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 15:26:09 [http-nio-8082-exec-10] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 15:26:09 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:26:09 [http-nio-8082-exec-10] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:26:09 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 15:26:09 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 15:26:09 [http-nio-8082-exec-10] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 15:26:09 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:26:09 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 15:26:09 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 15:26:09 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:26:09 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 15:26:09 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-27 15:26:09 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 15:26:09 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:26:09 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:26:09 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-27 15:26:09 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 15:26:09 [http-nio-8082-exec-2] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@3587e0e7]] -2025-10-27 15:26:09 [http-nio-8082-exec-2] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 15:26:09 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 15:26:09 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 15:26:09 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 15:26:09 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@2008994c], /v3/api-docs, ko_KR] -2025-10-27 15:26:09 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 7ms -2025-10-27 15:26:18 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/dashboard -2025-10-27 15:26:18 [http-nio-8082-exec-1] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 15:26:18 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/dashboard -2025-10-27 15:26:18 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.DashboardController.getDashboard 호출 - 파라미터: [user-001, 1, 1] -2025-10-27 15:26:18 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.DashboardController - 대시보드 데이터 조회 요청 - userId: user-001 -2025-10-27 15:26:18 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.DashboardService - Getting dashboard for user: user-001 -2025-10-27 15:26:18 [http-nio-8082-exec-1] INFO c.u.h.m.i.gateway.DashboardGateway - 대시보드 데이터 조회 시작 - userId: user-001 -2025-10-27 15:26:18 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:26:18 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:26:18 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:26:18 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.organizer_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.user_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.scheduled_at between ? and ? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 -2025-10-27 15:26:19 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - te1_0.todo_id, - te1_0.assignee_id, - te1_0.completed_at, - te1_0.created_at, - te1_0.description, - te1_0.due_date, - te1_0.meeting_id, - te1_0.minutes_id, - te1_0.priority, - te1_0.status, - te1_0.title, - te1_0.updated_at - from - todos te1_0 - where - te1_0.assignee_id=? -2025-10-27 15:26:19 [http-nio-8082-exec-1] INFO c.u.h.m.i.gateway.DashboardGateway - 대시보드 데이터 조회 완료 - userId: user-001, 예정 회의: 3개, 최근 회의록: 5개 -2025-10-27 15:26:19 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.DashboardController - 대시보드 데이터 조회 완료 - userId: user-001 -2025-10-27 15:26:19 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.DashboardController.getDashboard 완료 - 실행시간: 459ms -2025-10-27 15:26:45 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:26:45 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_26cb8e_1761546137214","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 15:26:45 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:26:45 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 15:26:45 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@6d0d5147] for TypeConfiguration -2025-10-27 15:26:45 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@5f831dd0] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@6d0d5147] -2025-10-27 15:26:45 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 15:26:45 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 15:29:27 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 73667 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 15:29:27 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 15:29:27 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 15:29:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:29:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 15:29:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 66 ms. Found 8 JPA repository interfaces. -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:29:28 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-27 15:29:28 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 15:29:28 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 15:29:28 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 15:29:28 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 15:29:28 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1164 ms -2025-10-27 15:29:28 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 15:29:28 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 15:29:28 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@1a88d194 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1a88d194 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@6b278b17 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@2ae5580 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@7d82ca56 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@2aaa89c2 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@5a58db42 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@217fd3c -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@69ac5752 -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1736273c -2025-10-27 15:29:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@ba86c53 -2025-10-27 15:29:29 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 15:29:29 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 15:29:29 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@11939a9f -2025-10-27 15:29:29 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 15:29:29 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 15:29:29 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@7a78d2aa) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@254d8ef6) -2025-10-27 15:29:29 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@2a9e7b4d) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@72406594) -2025-10-27 15:29:29 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 15:29:29 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4e7151b3 -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4e7151b3 -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@1a88d194` -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:29:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:29:29 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4e35a219] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@7772ec28] -2025-10-27 15:29:29 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 15:29:29 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4e35a219] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@6e21b6f8] -2025-10-27 15:29:29 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 15:29:29 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 15:29:30 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 15:29:30 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 15:29:30 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 15:29:30 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 15:29:30 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@6e21b6f8] for TypeConfiguration -2025-10-27 15:29:30 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 15:29:30 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 15:29:31 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 15:29:31 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 15:29:31 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 15:29:31 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 15:29:31 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 15:29:31 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 15:29:31 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 15:29:31 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_3a974d_1761546571303"} -2025-10-27 15:29:31 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:29:31 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 15:29:31 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 02f05d2e-0bf9-4e9d-8224-35fe482bbc69 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 15:29:31 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 15:29:31 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 15:29:31 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 15:29:31 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 15:29:32 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 15:29:32 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 15:29:32 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.093 seconds (process running for 5.258) -2025-10-27 15:29:36 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:29:36 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_3a974d_1761546571303","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 15:29:36 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 15:29:36 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 15:29:36 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@6e21b6f8] for TypeConfiguration -2025-10-27 15:29:36 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@6586a2d3] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@6e21b6f8] -2025-10-27 15:29:36 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 15:29:36 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 15:45:32 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 77111 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 15:45:32 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 15:45:32 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 81 ms. Found 8 JPA repository interfaces. -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 15:45:33 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 15 ms. Found 0 Redis repository interfaces. -2025-10-27 15:45:34 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 15:45:34 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 15:45:34 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 15:45:34 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 15:45:34 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1250 ms -2025-10-27 15:45:34 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 15:45:34 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 15:45:34 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3a0e7f89 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3a0e7f89 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3a0e7f89 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@665ed71a -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@665ed71a -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@15c1b543 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@15c1b543 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@23954300 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@23954300 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6aae82cc -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6aae82cc -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@6aae82cc -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@7a587e84 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@7a587e84 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@7a587e84 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@622ba721 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@622ba721 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@6b2f7527 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@7509226c -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@7509226c -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@4c9cce17 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@73316a0a -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@63a7af06 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@63a7af06 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@63a7af06 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@5f01fb5c -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@5f01fb5c -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@5f01fb5c -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@75c77add -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@75c77add -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@75c77add -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@d5e3f55 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@d5e3f55 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@d5e3f55 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@53df7e67 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@53df7e67 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@53df7e67 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@3d4b45b -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@3d4b45b -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@4d0b276e -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@4d0b276e -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@31531d0d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@31531d0d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@31531d0d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@19d76106 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@3f87780b -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@3f87780b -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2ba318c2 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@231d3ce -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@231d3ce -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@231d3ce -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@204c5ddf -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@240f2efd -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@175957b6 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@1b7a4930 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@1b7a4930 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@591a4d25 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@591a4d25 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4bfe83d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@5906ebfb -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@10fc1a22 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@1b841e7d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@6081f330 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@eb695e8 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@7eebb316 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@7eebb316 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@45273d40 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@45273d40 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@2a504ea7 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@2a504ea7 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@10f397d0 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@10f397d0 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@33a3e5db -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@33a3e5db -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4f9213d2 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@679f59f1 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@6b5e1fc5 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@6b5e1fc5 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@47ffa248 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@18ac25e6 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5e1a7d3 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@1eda309d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@1eda309d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@248d2cec -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5d77be8e -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@55a055cc -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@55a055cc -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@1ab1d93d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@1ab1d93d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@57167ccb -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@57167ccb -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@57167ccb -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@37753b69 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@37753b69 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@37753b69 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@602c167e -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@74c04377 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@10d49900 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@10d49900 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@e645600 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@e645600 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@e645600 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@e7b3e54 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@78d61f17 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@4cfe9594 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@4cfe9594 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@60861e5d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@60861e5d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@60861e5d -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@37d81587 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@37d81587 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@7f3e9acc -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@7f3e9acc -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@47d4e28a -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@47d4e28a -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@177068db -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@177068db -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@60f3239f -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@60f3239f -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@6b103db7 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@b3042ed -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@4ec37a42 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4ec37a42 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@64f6dd19 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@3b8b5b40 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@2e1ad7de -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@7c56c911 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1de6dc80 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@418d1c03 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@395197cb -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7305cfb1 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@582c1f8d -2025-10-27 15:45:34 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 15:45:34 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 15:45:34 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@46b55a0e -2025-10-27 15:45:34 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 15:45:34 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 15:45:34 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@7164e28a) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@1b881f1f) -2025-10-27 15:45:34 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@51efdb72) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@7bc6b117) -2025-10-27 15:45:34 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 15:45:34 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@641cea11 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@641cea11 -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@4ec37a42` -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:45:34 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 15:45:34 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6aa18912] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@5c20505f] -2025-10-27 15:45:35 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 15:45:35 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6aa18912] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@43851574] -2025-10-27 15:45:35 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 15:45:35 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 15:45:35 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 15:45:35 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 15:45:35 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 15:45:35 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 15:45:35 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@43851574] for TypeConfiguration -2025-10-27 15:45:35 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 15:45:35 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 15:45:36 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 15:45:36 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 15:45:36 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 15:45:36 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 15:45:36 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 15:45:36 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 15:45:36 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 22a115a7-277f-4fc2-bedb-f46aeb868b1a - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 15:45:36 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 15:45:36 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 15:45:37 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 15:45:37 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 15:45:37 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 15:45:37 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 15:45:37 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.237 seconds (process running for 5.437) -2025-10-27 16:06:44 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 81381 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 16:06:44 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 16:06:44 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 87 ms. Found 8 JPA repository interfaces. -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:06:44 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 18 ms. Found 0 Redis repository interfaces. -2025-10-27 16:06:45 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 16:06:45 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 16:06:45 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 16:06:45 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 16:06:45 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1350 ms -2025-10-27 16:06:45 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 16:06:45 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 16:06:45 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@fe13916 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@fe13916 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@4203529f -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@7d82ca56 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@5a58db42 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@217fd3c -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@69ac5752 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1736273c -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@ba86c53 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@36eb8e07 -2025-10-27 16:06:45 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@3df6494f -2025-10-27 16:06:45 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 16:06:45 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 16:06:46 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@5e83298e -2025-10-27 16:06:46 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 16:06:46 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 16:06:46 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@2a9e7b4d) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@72406594) -2025-10-27 16:06:46 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@4e1104f4) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@76219fe) -2025-10-27 16:06:46 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 16:06:46 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@1bcf2c64 -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1bcf2c64 -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@fe13916` -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:06:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:06:46 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@14d513ca] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@be9cc86] -2025-10-27 16:06:46 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 16:06:46 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@14d513ca] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@4fc9e73d] -2025-10-27 16:06:47 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 16:06:47 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 16:06:47 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 16:06:47 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 16:06:47 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 16:06:47 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 16:06:47 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@4fc9e73d] for TypeConfiguration -2025-10-27 16:06:47 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:06:47 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 16:06:48 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 16:06:48 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 16:06:48 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 16:06:48 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 16:06:48 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 16:06:48 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 16:06:48 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 16:06:48 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_0dc4db_1761548808376"} -2025-10-27 16:06:48 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:06:48 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 16:06:48 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 1f4ff8fd-073f-4c48-9a29-87c78ede6ee8 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 16:06:48 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 16:06:48 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 16:06:48 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 16:06:49 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 16:06:49 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 16:06:49 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 16:06:49 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.667 seconds (process running for 5.85) -2025-10-27 16:07:46 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 16:07:46 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 16:07:46 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms -2025-10-27 16:07:47 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 16:07:47 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:07:47 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 16:07:47 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 16:07:47 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 16:07:47 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 16:07:47 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:07:47 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 16:07:47 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:07:47 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 16:07:47 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:07:47 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 16:07:47 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 16:07:47 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:07:47 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 16:07:47 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:07:47 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 16:07:47 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 16:07:47 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 16:07:47 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:07:47 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 16:07:47 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@412eb0ea]] -2025-10-27 16:07:47 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 16:07:47 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 16:07:47 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:07:47 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 16:07:47 [http-nio-8082-exec-8] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@7a1f107e], /v3/api-docs, ko_KR] -2025-10-27 16:07:47 [http-nio-8082-exec-8] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 447 ms -2025-10-27 16:07:47 [http-nio-8082-exec-8] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 459ms -2025-10-27 16:08:25 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:08:25 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_0dc4db_1761548808376","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 16:08:25 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:08:25 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:08:25 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@4fc9e73d] for TypeConfiguration -2025-10-27 16:08:25 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@2c27923f] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@4fc9e73d] -2025-10-27 16:08:25 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 16:08:25 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 16:09:58 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 81730 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 16:09:58 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 16:09:58 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 68 ms. Found 8 JPA repository interfaces. -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:09:59 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 18 ms. Found 0 Redis repository interfaces. -2025-10-27 16:09:59 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 16:09:59 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 16:09:59 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 16:09:59 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 16:09:59 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1151 ms -2025-10-27 16:09:59 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 16:10:00 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 16:10:00 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@6f430ea8 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@6f430ea8 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@6f430ea8 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@119f072c -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@119f072c -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@66456506 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@66456506 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@69944a90 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@69944a90 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1ed52f44 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1ed52f44 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@1ed52f44 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@771afdd5 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@771afdd5 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@771afdd5 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@3abadb65 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@3abadb65 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@7131d668 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@46a97805 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@46a97805 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@667dd150 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@af04f09 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@758d4aa9 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@758d4aa9 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@758d4aa9 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@78e97d4d -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@78e97d4d -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@78e97d4d -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@7096d451 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@7096d451 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@7096d451 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@7816454d -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@7816454d -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@7816454d -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@67d180e4 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@67d180e4 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@67d180e4 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@54e18a46 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@54e18a46 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@1293f8d7 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@1293f8d7 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@58e5fbe5 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@58e5fbe5 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@58e5fbe5 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@335896bd -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@6b33892a -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@6b33892a -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@666b91db -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@11a67420 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@11a67420 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@11a67420 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@663cf5d7 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@11b14ae3 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2b6ee447 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@9cb927e -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@9cb927e -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@8585cdd -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@8585cdd -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@1325f967 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@4f356b98 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@1ab85862 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@504c415c -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@6c9e74f3 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@813ab53 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@5030997b -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@5030997b -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@62c47480 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@62c47480 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@7de2bdc7 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@7de2bdc7 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@683ed81b -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@683ed81b -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@3c116f26 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@3c116f26 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@102ecb61 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@102ecb61 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@6ca367aa -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@30ed4034 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@77e6053 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@7097d921 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2a21cbe7 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3bb4c2b2 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4fbc516f -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1acc768 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@25765a49 -2025-10-27 16:10:00 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 16:10:00 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 16:10:00 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@7fff419d -2025-10-27 16:10:00 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 16:10:00 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 16:10:00 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@6e00d737) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@656c0eae) -2025-10-27 16:10:00 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@7d7f966f) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@29c21acb) -2025-10-27 16:10:00 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 16:10:00 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4803bf73 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4803bf73 -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@102ecb61` -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:10:00 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:10:00 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4feaa4b8] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@4c6eaa65] -2025-10-27 16:10:00 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 16:10:00 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4feaa4b8] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@2b9bacb8] -2025-10-27 16:10:01 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 16:10:01 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 16:10:01 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 16:10:01 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 16:10:01 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 16:10:01 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 16:10:01 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@2b9bacb8] for TypeConfiguration -2025-10-27 16:10:01 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:10:01 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 16:10:01 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 16:10:01 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 16:10:02 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 16:10:02 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 16:10:02 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 16:10:02 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 16:10:02 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 16:10:02 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_1b1252_1761549002211"} -2025-10-27 16:10:02 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:10:02 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 16:10:02 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: a6e1d2b5-9eb0-4706-bbc8-71fa37ddafbb - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 16:10:02 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 16:10:02 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 16:10:02 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 16:10:02 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 16:10:02 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 16:10:03 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 16:10:03 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 4.807 seconds (process running for 4.983) -2025-10-27 16:10:29 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 16:10:29 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 16:10:29 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-completed-5/end -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-completed-5/end -2025-10-27 16:10:29 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-completed-5, user-001, 1, 1] -2025-10-27 16:10:29 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-completed-5, userId: user-001 -2025-10-27 16:10:29 [http-nio-8082-exec-1] INFO c.u.h.m.biz.service.MeetingService - Ending meeting: meeting-completed-5 -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MeetingService - Searching for meeting with ID: meeting-completed-5 -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MeetingService - Found meeting: 완료된 회의 5, status: COMPLETED -2025-10-27 16:10:29 [http-nio-8082-exec-1] WARN c.u.h.m.biz.service.MeetingService - Invalid meeting status for ending: meetingId=meeting-completed-5, status=COMPLETED -2025-10-27 16:10:29 [http-nio-8082-exec-1] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting 실패 - 실행시간: 136ms, 에러: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED -2025-10-27 16:10:29 [http-nio-8082-exec-1] ERROR c.u.h.m.i.c.MeetingController - 회의 종료 실패 - meetingId: meeting-completed-5, error: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED -2025-10-27 16:10:29 [http-nio-8082-exec-1] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 실패 - 실행시간: 175ms, 에러: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED -2025-10-27 16:10:29 [http-nio-8082-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED - at com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting(MeetingService.java:296) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.endMeeting() + at com.unicorn.hgzero.meeting.biz.service.EndMeetingService$$SpringCGLIB$$0.endMeeting() at com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting(MeetingController.java:199) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) at java.base/java.lang.reflect.Method.invoke(Method.java:580) @@ -6768,97 +1433,12 @@ com.unicorn.hgzero.common.exception.BusinessException: 회의를 종료할 수 at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:10:29 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:18:41 [http-nio-8082-exec-2] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-upcoming-3, user-001, 1, 1] -2025-10-27 16:18:41 [http-nio-8082-exec-2] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-upcoming-3, userId: user-001 -2025-10-27 16:18:41 [http-nio-8082-exec-2] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@7fff419d (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:18:41 [http-nio-8082-exec-2] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@5568dc8b (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:18:41 [http-nio-8082-exec-2] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@6fb19a52 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:18:41 [http-nio-8082-exec-2] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@172cc596 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:18:41 [http-nio-8082-exec-2] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@1a3aa4e5 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:18:41 [http-nio-8082-exec-2] INFO c.u.h.m.biz.service.MeetingService - Ending meeting: meeting-upcoming-3 -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG c.u.h.m.biz.service.MeetingService - Searching for meeting with ID: meeting-upcoming-3 -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG c.u.h.m.biz.service.MeetingService - Found meeting: 분기 계획 회의, status: IN_PROGRESS -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG c.u.h.m.biz.service.MeetingService - Searching for existing minutes for meeting: meeting-upcoming-3 -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? - order by - me1_0.version desc - fetch - first ? rows only -2025-10-27 16:18:41 [http-nio-8082-exec-2] ERROR c.u.h.m.biz.service.MeetingService - Minutes not found for meeting: meeting-upcoming-3 -2025-10-27 16:18:41 [http-nio-8082-exec-2] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting 실패 - 실행시간: 90ms, 에러: 회의록을 찾을 수 없습니다: meeting-upcoming-3 -2025-10-27 16:18:41 [http-nio-8082-exec-2] ERROR c.u.h.m.i.c.MeetingController - 회의 종료 실패 - meetingId: meeting-upcoming-3, error: 회의록을 찾을 수 없습니다: meeting-upcoming-3 -2025-10-27 16:18:41 [http-nio-8082-exec-2] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 실패 - 실행시간: 171ms, 에러: 회의록을 찾을 수 없습니다: meeting-upcoming-3 -2025-10-27 16:18:41 [http-nio-8082-exec-2] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 회의록을 찾을 수 없습니다: meeting-upcoming-3] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 회의록을 찾을 수 없습니다: meeting-upcoming-3 - at com.unicorn.hgzero.meeting.biz.service.MeetingService.lambda$endMeeting$2(MeetingService.java:326) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting(MeetingService.java:324) + at java.base/java.lang.Thread.run(Thread.java:1575) +2025-10-29 09:08:08 [http-nio-8082-exec-1] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.EndMeetingService.endMeeting 실패 - 실행시간: 195ms, 에러: AI 회의록 통합 처리 중 오류가 발생했습니다: 422 Unprocessable Content: "{"detail":[{"type":"missing","loc":["body","participant_minutes",0,"user_id"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",0,"user_name"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",1,"user_id"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",1,"user_name"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",2,"user_id"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}},{"type":"missing","loc":["body","participant_minutes",2,"user_name"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}}]}" +2025-10-29 09:08:09 [http-nio-8082-exec-1] ERROR c.u.h.m.i.c.MeetingController - 회의 종료 중 예상치 못한 오류 - meetingId: meeting-123 +java.lang.RuntimeException: AI 회의록 통합 처리 중 오류가 발생했습니다: 422 Unprocessable Content: "{"detail":[{"type":"missing","loc":["body","participant_minutes",0,"user_id"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",0,"user_name"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",1,"user_id"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",1,"user_name"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",2,"user_id"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}},{"type":"missing","loc":["body","participant_minutes",2,"user_name"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}}]}" + at com.unicorn.hgzero.meeting.infra.client.AIServiceClient.consolidateMinutes(AIServiceClient.java:77) + at com.unicorn.hgzero.meeting.biz.service.EndMeetingService.endMeeting(EndMeetingService.java:85) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) at java.base/java.lang.reflect.Method.invoke(Method.java:580) at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) @@ -6882,7 +1462,7 @@ com.unicorn.hgzero.common.exception.BusinessException: 회의록을 찾을 수 at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.endMeeting() + at com.unicorn.hgzero.meeting.biz.service.EndMeetingService$$SpringCGLIB$$0.endMeeting() at com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting(MeetingController.java:199) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) at java.base/java.lang.reflect.Method.invoke(Method.java:580) @@ -7035,1125 +1615,20 @@ com.unicorn.hgzero.common.exception.BusinessException: 회의록을 찾을 수 at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:18:41 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:26:44 [http-nio-8082-exec-3] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-upcoming-3, user-001, 1, 1] -2025-10-27 16:26:44 [http-nio-8082-exec-3] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-upcoming-3, userId: user-001 -2025-10-27 16:26:44 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@6a25d7d1 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:26:44 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@37b45b41 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:26:44 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@72b6c3d3 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:26:44 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@2e27a80c (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:26:44 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@430ef0a9 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:26:44 [http-nio-8082-exec-3] INFO c.u.h.m.biz.service.MeetingService - Ending meeting: meeting-upcoming-3 -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MeetingService - Searching for meeting with ID: meeting-upcoming-3 -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MeetingService - Found meeting: 분기 계획 회의, status: IN_PROGRESS -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MeetingService - Searching for existing minutes for meeting: meeting-upcoming-3 -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? - order by - me1_0.version desc - fetch - first ? rows only -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MeetingService - Found minutes: IN_PROGRESS 회의 3 - 회의록 -2025-10-27 16:26:44 [http-nio-8082-exec-3] INFO c.u.h.m.biz.service.MeetingService - Creating basic analysis for meeting: meeting-upcoming-3 -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG c.u.h.m.i.g.MeetingAnalysisGateway - Saving meeting analysis: 44ece7d5-f0be-45da-8140-f459473d88af -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - mae1_0.analysis_id, - mae1_0.agenda_analyses, - mae1_0.completed_at, - mae1_0.created_at, - mae1_0.meeting_id, - mae1_0.minutes_id, - mae1_0.status - from - meeting_analysis mae1_0 - where - mae1_0.analysis_id=? -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* insert for - com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingAnalysisEntity */insert - into - meeting_analysis (agenda_analyses, completed_at, created_at, meeting_id, minutes_id, status, analysis_id) - values - (?, ?, ?, ?, ?, ?, ?) -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* update - for com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingEntity */update meetings - set - description=?, - end_time=?, - ended_at=?, - location=?, - organizer_id=?, - purpose=?, - scheduled_at=?, - started_at=?, - status=?, - template_id=?, - title=?, - updated_at=? - where - meeting_id=? -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* delete for com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingParticipantEntity */delete - from - meeting_participants - where - meeting_id=? - and user_id=? -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* delete for com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingParticipantEntity */delete - from - meeting_participants - where - meeting_id=? - and user_id=? -2025-10-27 16:26:44 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:26:44 [http-nio-8082-exec-3] INFO c.u.h.m.biz.service.MeetingService - Meeting ended successfully: meeting-upcoming-3 -2025-10-27 16:26:44 [http-nio-8082-exec-3] INFO c.u.h.m.i.c.MeetingController - 회의 종료 완료 - meetingId: meeting-upcoming-3 -2025-10-27 16:26:44 [http-nio-8082-exec-3] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 완료 - 실행시간: 246ms -2025-10-27 16:33:58 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:33:58 [http-nio-8082-exec-5] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:33:58 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:33:58 [http-nio-8082-exec-5] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-upcoming-3, user-001, 1, 1] -2025-10-27 16:33:58 [http-nio-8082-exec-5] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-upcoming-3, userId: user-001 -2025-10-27 16:33:58 [http-nio-8082-exec-5] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@5675c5da (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:34:03 [http-nio-8082-exec-5] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@72b3362a (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:34:03 [http-nio-8082-exec-5] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@3ef89739 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:34:03 [http-nio-8082-exec-5] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@a1ca566 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:34:03 [http-nio-8082-exec-5] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@6f92a589 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:34:03 [http-nio-8082-exec-5] INFO c.u.h.m.biz.service.MeetingService - Ending meeting: meeting-upcoming-3 -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG c.u.h.m.biz.service.MeetingService - Searching for meeting with ID: meeting-upcoming-3 -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG c.u.h.m.biz.service.MeetingService - Found meeting: 분기 계획 회의, status: SCHEDULED -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG c.u.h.m.biz.service.MeetingService - Searching for existing minutes for meeting: meeting-upcoming-3 -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? - order by - me1_0.version desc - fetch - first ? rows only -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG c.u.h.m.biz.service.MeetingService - Found minutes: IN_PROGRESS 회의 3 - 회의록 -2025-10-27 16:34:03 [http-nio-8082-exec-5] INFO c.u.h.m.biz.service.MeetingService - Creating basic analysis for meeting: meeting-upcoming-3 -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG c.u.h.m.i.g.MeetingAnalysisGateway - Saving meeting analysis: abc7d7ad-e717-491e-b819-8a0873935c82 -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - select - mae1_0.analysis_id, - mae1_0.agenda_analyses, - mae1_0.completed_at, - mae1_0.created_at, - mae1_0.meeting_id, - mae1_0.minutes_id, - mae1_0.status - from - meeting_analysis mae1_0 - where - mae1_0.analysis_id=? -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:34:03 [http-nio-8082-exec-5] INFO c.u.h.m.biz.service.MeetingService - Meeting ended successfully: meeting-upcoming-3 -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* insert for - com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingAnalysisEntity */insert - into - meeting_analysis (agenda_analyses, completed_at, created_at, meeting_id, minutes_id, status, analysis_id) - values - (?, ?, ?, ?, ?, ?, ?) -2025-10-27 16:34:03 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* update - for com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingEntity */update meetings - set - description=?, - end_time=?, - ended_at=?, - location=?, - organizer_id=?, - purpose=?, - scheduled_at=?, - started_at=?, - status=?, - template_id=?, - title=?, - updated_at=? - where - meeting_id=? -2025-10-27 16:34:03 [http-nio-8082-exec-5] INFO c.u.h.m.i.c.MeetingController - 회의 종료 완료 - meetingId: meeting-upcoming-3 -2025-10-27 16:34:03 [http-nio-8082-exec-5] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 완료 - 실행시간: 5160ms -2025-10-27 16:36:39 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:36:39 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_1b1252_1761549002211","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 16:36:39 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:36:39 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:36:39 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@2b9bacb8] for TypeConfiguration -2025-10-27 16:36:39 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@50272a23] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@2b9bacb8] -2025-10-27 16:36:39 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 16:36:39 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 16:38:39 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 86389 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 16:38:39 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 16:38:39 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 68 ms. Found 8 JPA repository interfaces. -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:38:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-27 16:38:41 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 16:38:41 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 16:38:41 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 16:38:41 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 16:38:41 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1122 ms -2025-10-27 16:38:41 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 16:38:41 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 16:38:41 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@215a329c -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@234ce7ff -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@234ce7ff -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@217fd3c -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@69ac5752 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@ba86c53 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@36eb8e07 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3df6494f -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1b5f960a -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@53ddabc6 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@39ac8c0c -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@361f1647 -2025-10-27 16:38:41 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 16:38:41 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 16:38:41 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@737445ab -2025-10-27 16:38:41 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 16:38:41 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 16:38:41 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@5eff5e4c) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@2fe2fcc2) -2025-10-27 16:38:41 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@69926b6e) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@7ea8224b) -2025-10-27 16:38:41 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 16:38:41 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4e481512 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4e481512 -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@234ce7ff` -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:38:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:38:41 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@34ab398b] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@71634e64] -2025-10-27 16:38:42 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 16:38:42 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@34ab398b] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@14144cc9] -2025-10-27 16:38:42 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 16:38:42 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 16:38:42 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 16:38:42 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 16:38:42 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 16:38:42 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 16:38:42 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@14144cc9] for TypeConfiguration -2025-10-27 16:38:42 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:38:42 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 16:38:43 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 16:38:43 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 16:38:43 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 16:38:43 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 16:38:43 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 16:38:43 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 16:38:43 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 16:38:43 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_36a177_1761550723518"} -2025-10-27 16:38:43 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:38:43 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 16:38:43 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 370ebf0f-b01f-4eff-9605-cdfd9fcd3781 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 16:38:43 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 16:38:43 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 16:38:44 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 16:38:44 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 16:38:44 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 16:38:44 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 16:38:44 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 4.807 seconds (process running for 4.972) -2025-10-27 16:39:09 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 16:39:09 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 16:39:09 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:39:09 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-upcoming-3, user-001, 1, 1] -2025-10-27 16:39:09 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-upcoming-3, userId: user-001 -2025-10-27 16:39:09 [http-nio-8082-exec-1] INFO c.u.h.m.biz.service.MeetingService - Ending meeting: meeting-upcoming-3 -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MeetingService - Searching for meeting with ID: meeting-upcoming-3 -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MeetingService - Found meeting: 분기 계획 회의, status: COMPLETED -2025-10-27 16:39:09 [http-nio-8082-exec-1] WARN c.u.h.m.biz.service.MeetingService - Invalid meeting status for ending: meetingId=meeting-upcoming-3, status=COMPLETED -2025-10-27 16:39:09 [http-nio-8082-exec-1] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting 실패 - 실행시간: 128ms, 에러: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED -2025-10-27 16:39:09 [http-nio-8082-exec-1] ERROR c.u.h.m.i.c.MeetingController - 회의 종료 실패 - meetingId: meeting-upcoming-3, error: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED -2025-10-27 16:39:09 [http-nio-8082-exec-1] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 실패 - 실행시간: 153ms, 에러: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED -2025-10-27 16:39:09 [http-nio-8082-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 회의를 종료할 수 없는 상태입니다. 현재 상태: COMPLETED - at com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting(MeetingService.java:297) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.endMeeting() - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting(MeetingController.java:199) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.endMeeting() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:39:09 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:40:01 [http-nio-8082-exec-2] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-upcoming-3, user-001, 1, 1] -2025-10-27 16:40:01 [http-nio-8082-exec-2] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-upcoming-3, userId: user-001 -2025-10-27 16:40:01 [http-nio-8082-exec-2] INFO c.u.h.m.biz.service.MeetingService - Ending meeting: meeting-upcoming-3 -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG c.u.h.m.biz.service.MeetingService - Searching for meeting with ID: meeting-upcoming-3 -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG c.u.h.m.biz.service.MeetingService - Found meeting: 분기 계획 회의, status: SCHEDULED -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG c.u.h.m.biz.service.MeetingService - Searching for existing minutes for meeting: meeting-upcoming-3 -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? - order by - me1_0.version desc - fetch - first ? rows only -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG c.u.h.m.biz.service.MeetingService - Found minutes: IN_PROGRESS 회의 3 - 회의록 -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG c.u.h.m.i.g.MeetingAnalysisGateway - Finding meeting analysis by meetingId: meeting-upcoming-3 -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - /* */ select - mae1_0.analysis_id, - mae1_0.agenda_analyses, - mae1_0.completed_at, - mae1_0.created_at, - mae1_0.meeting_id, - mae1_0.minutes_id, - mae1_0.status - from - meeting_analysis mae1_0 - where - mae1_0.meeting_id=? -2025-10-27 16:40:01 [http-nio-8082-exec-2] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting 실패 - 실행시간: 110ms, 에러: Query did not return a unique result: 2 results were returned -2025-10-27 16:40:01 [http-nio-8082-exec-2] ERROR c.u.h.m.i.c.MeetingController - 회의 종료 중 예상치 못한 오류 - meetingId: meeting-upcoming-3 -org.springframework.dao.IncorrectResultSizeDataAccessException: Query did not return a unique result: 2 results were returned - at org.springframework.orm.jpa.vendor.HibernateJpaDialect.convertHibernateAccessException(HibernateJpaDialect.java:301) - at org.springframework.orm.jpa.vendor.HibernateJpaDialect.translateExceptionIfPossible(HibernateJpaDialect.java:244) - at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.translateExceptionIfPossible(AbstractEntityManagerFactoryBean.java:550) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:335) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:160) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor$CrudMethodMetadataPopulatingMethodInterceptor.invoke(CrudMethodMetadataPostProcessor.java:136) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:223) - at jdk.proxy2/jdk.proxy2.$Proxy182.findByMeetingId(Unknown Source) - at com.unicorn.hgzero.meeting.infra.gateway.MeetingAnalysisGateway.findByMeetingId(MeetingAnalysisGateway.java:27) - at com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting(MeetingService.java:333) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.endMeeting() - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting(MeetingController.java:199) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.endMeeting() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -Caused by: org.hibernate.NonUniqueResultException: Query did not return a unique result: 2 results were returned - at org.hibernate.query.spi.AbstractSelectionQuery.uniqueElement(AbstractSelectionQuery.java:578) - at org.hibernate.query.spi.AbstractSelectionQuery.getSingleResult(AbstractSelectionQuery.java:561) - at org.springframework.data.jpa.repository.query.JpaQueryExecution$SingleEntityExecution.doExecute(JpaQueryExecution.java:223) - at org.springframework.data.jpa.repository.query.JpaQueryExecution.execute(JpaQueryExecution.java:92) - at org.springframework.data.jpa.repository.query.AbstractJpaQuery.doExecute(AbstractJpaQuery.java:152) - at org.springframework.data.jpa.repository.query.AbstractJpaQuery.execute(AbstractJpaQuery.java:140) - at org.springframework.data.repository.core.support.RepositoryMethodInvoker.doInvoke(RepositoryMethodInvoker.java:170) - at org.springframework.data.repository.core.support.RepositoryMethodInvoker.invoke(RepositoryMethodInvoker.java:158) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.doInvoke(QueryExecutorMethodInterceptor.java:169) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.invoke(QueryExecutorMethodInterceptor.java:148) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:70) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:138) - ... 186 common frames omitted -2025-10-27 16:40:01 [http-nio-8082-exec-2] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 실패 - 실행시간: 136ms, 에러: 회의 종료 처리 중 오류가 발생했습니다. -2025-10-27 16:40:01 [http-nio-8082-exec-2] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 회의 종료 처리 중 오류가 발생했습니다.] with root cause + at java.base/java.lang.Thread.run(Thread.java:1575) +Caused by: org.springframework.web.client.HttpClientErrorException$UnprocessableEntity: 422 Unprocessable Content: "{"detail":[{"type":"missing","loc":["body","participant_minutes",0,"user_id"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",0,"user_name"],"msg":"Field required","input":{"userId":"user-001","userName":"user-001","content":""}},{"type":"missing","loc":["body","participant_minutes",1,"user_id"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",1,"user_name"],"msg":"Field required","input":{"userId":"user-002","userName":"user-002","content":"프로젝트 목표 논의\n성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.\n\n기술 스택 검토\n캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."}},{"type":"missing","loc":["body","participant_minutes",2,"user_id"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}},{"type":"missing","loc":["body","participant_minutes",2,"user_name"],"msg":"Field required","input":{"userId":"user-003","userName":"user-003","content":"프로젝트 목표 논의\n고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.\n\n기술 스택 검토\nUI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."}}]}" + at org.springframework.web.client.HttpClientErrorException.create(HttpClientErrorException.java:133) + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:183) + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:137) + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:942) + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:891) + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:790) + at org.springframework.web.client.RestTemplate.postForEntity(RestTemplate.java:538) + at com.unicorn.hgzero.meeting.infra.client.AIServiceClient.consolidateMinutes(AIServiceClient.java:59) + ... 178 common frames omitted +2025-10-29 09:08:09 [http-nio-8082-exec-1] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 실패 - 실행시간: 217ms, 에러: 회의 종료 처리 중 오류가 발생했습니다. +2025-10-29 09:08:09 [http-nio-8082-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 회의 종료 처리 중 오류가 발생했습니다.] with root cause com.unicorn.hgzero.common.exception.BusinessException: 회의 종료 처리 중 오류가 발생했습니다. at com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting(MeetingController.java:212) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) @@ -8307,8278 +1782,570 @@ com.unicorn.hgzero.common.exception.BusinessException: 회의 종료 처리 중 at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:40:01 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:40:32 [http-nio-8082-exec-3] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-upcoming-3, user-001, 1, 1] -2025-10-27 16:40:32 [http-nio-8082-exec-3] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-upcoming-3, userId: user-001 -2025-10-27 16:40:32 [http-nio-8082-exec-3] INFO c.u.h.m.biz.service.MeetingService - Ending meeting: meeting-upcoming-3 -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MeetingService - Searching for meeting with ID: meeting-upcoming-3 -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MeetingService - Found meeting: 분기 계획 회의, status: IN_PROGRESS -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MeetingService - Searching for existing minutes for meeting: meeting-upcoming-3 -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? - order by - me1_0.version desc - fetch - first ? rows only -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MeetingService - Found minutes: IN_PROGRESS 회의 3 - 회의록 -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG c.u.h.m.i.g.MeetingAnalysisGateway - Finding meeting analysis by meetingId: meeting-upcoming-3 -2025-10-27 16:40:32 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mae1_0.analysis_id, - mae1_0.agenda_analyses, - mae1_0.completed_at, - mae1_0.created_at, - mae1_0.meeting_id, - mae1_0.minutes_id, - mae1_0.status - from - meeting_analysis mae1_0 - where - mae1_0.meeting_id=? -2025-10-27 16:40:33 [http-nio-8082-exec-3] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting 실패 - 실행시간: 88ms, 에러: Query did not return a unique result: 2 results were returned -2025-10-27 16:40:33 [http-nio-8082-exec-3] ERROR c.u.h.m.i.c.MeetingController - 회의 종료 중 예상치 못한 오류 - meetingId: meeting-upcoming-3 -org.springframework.dao.IncorrectResultSizeDataAccessException: Query did not return a unique result: 2 results were returned - at org.springframework.orm.jpa.vendor.HibernateJpaDialect.convertHibernateAccessException(HibernateJpaDialect.java:301) - at org.springframework.orm.jpa.vendor.HibernateJpaDialect.translateExceptionIfPossible(HibernateJpaDialect.java:244) - at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.translateExceptionIfPossible(AbstractEntityManagerFactoryBean.java:550) - at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:61) - at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:335) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:160) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor$CrudMethodMetadataPopulatingMethodInterceptor.invoke(CrudMethodMetadataPostProcessor.java:136) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:223) - at jdk.proxy2/jdk.proxy2.$Proxy182.findByMeetingId(Unknown Source) - at com.unicorn.hgzero.meeting.infra.gateway.MeetingAnalysisGateway.findByMeetingId(MeetingAnalysisGateway.java:27) - at com.unicorn.hgzero.meeting.biz.service.MeetingService.endMeeting(MeetingService.java:333) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.endMeeting() - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting(MeetingController.java:199) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.endMeeting() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -Caused by: org.hibernate.NonUniqueResultException: Query did not return a unique result: 2 results were returned - at org.hibernate.query.spi.AbstractSelectionQuery.uniqueElement(AbstractSelectionQuery.java:578) - at org.hibernate.query.spi.AbstractSelectionQuery.getSingleResult(AbstractSelectionQuery.java:561) - at org.springframework.data.jpa.repository.query.JpaQueryExecution$SingleEntityExecution.doExecute(JpaQueryExecution.java:223) - at org.springframework.data.jpa.repository.query.JpaQueryExecution.execute(JpaQueryExecution.java:92) - at org.springframework.data.jpa.repository.query.AbstractJpaQuery.doExecute(AbstractJpaQuery.java:152) - at org.springframework.data.jpa.repository.query.AbstractJpaQuery.execute(AbstractJpaQuery.java:140) - at org.springframework.data.repository.core.support.RepositoryMethodInvoker.doInvoke(RepositoryMethodInvoker.java:170) - at org.springframework.data.repository.core.support.RepositoryMethodInvoker.invoke(RepositoryMethodInvoker.java:158) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.doInvoke(QueryExecutorMethodInterceptor.java:169) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.invoke(QueryExecutorMethodInterceptor.java:148) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:70) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:138) - ... 186 common frames omitted -2025-10-27 16:40:33 [http-nio-8082-exec-3] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 실패 - 실행시간: 127ms, 에러: 회의 종료 처리 중 오류가 발생했습니다. -2025-10-27 16:40:33 [http-nio-8082-exec-3] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 회의 종료 처리 중 오류가 발생했습니다.] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 회의 종료 처리 중 오류가 발생했습니다. - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting(MeetingController.java:212) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.endMeeting() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:40:33 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:40:33 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:40:33 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:43:05 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-scheduled-2/invite -2025-10-27 16:43:05 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:43:05 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-scheduled-2/invite -2025-10-27 16:43:05 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 호출 - 파라미터: [meeting-scheduled-2, user-001, 1, 1, com.unicorn.hgzero.meeting.infra.dto.request.InviteParticipantRequest@2cc19c8a] -2025-10-27 16:43:05 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 요청 - meetingId: meeting-scheduled-2, email: newparticipant@example.com, inviter: 1 -2025-10-27 16:43:05 [http-nio-8082-exec-4] INFO c.u.h.m.biz.service.MeetingService - Inviting participant to meeting: meeting-scheduled-2, email: newparticipant@example.com -2025-10-27 16:43:05 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:43:05 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:43:05 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:43:05 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.user_id=? - fetch - first ? rows only -2025-10-27 16:43:06 [http-nio-8082-exec-4] WARN c.u.h.m.biz.service.MeetingService - Email newparticipant@example.com is already a participant of meeting meeting-scheduled-2 -2025-10-27 16:43:06 [http-nio-8082-exec-4] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant 실패 - 실행시간: 104ms, 에러: 이미 존재하는 리소스입니다. -2025-10-27 16:43:06 [http-nio-8082-exec-4] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 실패 - 실행시간: 144ms, 에러: 이미 존재하는 리소스입니다. -2025-10-27 16:43:06 [http-nio-8082-exec-4] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 이미 존재하는 리소스입니다.] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 이미 존재하는 리소스입니다. - at com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant(MeetingService.java:551) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.inviteParticipant() - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant(MeetingController.java:307) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.inviteParticipant() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:43:06 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:43:06 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:43:06 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:44:15 [http-nio-8082-exec-5] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-upcoming-3, user-001, 1, 1] -2025-10-27 16:44:15 [http-nio-8082-exec-5] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-upcoming-3, userId: user-001 -2025-10-27 16:44:15 [http-nio-8082-exec-5] INFO c.u.h.m.biz.service.MeetingService - Ending meeting: meeting-upcoming-3 -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG c.u.h.m.biz.service.MeetingService - Searching for meeting with ID: meeting-upcoming-3 -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG c.u.h.m.biz.service.MeetingService - Found meeting: 분기 계획 회의, status: IN_PROGRESS -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG c.u.h.m.biz.service.MeetingService - Searching for existing minutes for meeting: meeting-upcoming-3 -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? - order by - me1_0.version desc - fetch - first ? rows only -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG c.u.h.m.biz.service.MeetingService - Found minutes: IN_PROGRESS 회의 3 - 회의록 -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG c.u.h.m.i.g.MeetingAnalysisGateway - Finding meeting analysis by meetingId: meeting-upcoming-3 -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* */ select - mae1_0.analysis_id, - mae1_0.agenda_analyses, - mae1_0.completed_at, - mae1_0.created_at, - mae1_0.meeting_id, - mae1_0.minutes_id, - mae1_0.status - from - meeting_analysis mae1_0 - where - mae1_0.meeting_id=? -2025-10-27 16:44:15 [http-nio-8082-exec-5] INFO c.u.h.m.biz.service.MeetingService - Using existing analysis data for meeting: meeting-upcoming-3 -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:44:15 [http-nio-8082-exec-5] INFO c.u.h.m.biz.service.MeetingService - Meeting ended successfully: meeting-upcoming-3 -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - /* update - for com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingEntity */update meetings - set - description=?, - end_time=?, - ended_at=?, - location=?, - organizer_id=?, - purpose=?, - scheduled_at=?, - started_at=?, - status=?, - template_id=?, - title=?, - updated_at=? - where - meeting_id=? -2025-10-27 16:44:15 [http-nio-8082-exec-5] INFO c.u.h.m.i.c.MeetingController - 회의 종료 완료 - meetingId: meeting-upcoming-3 -2025-10-27 16:44:15 [http-nio-8082-exec-5] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 완료 - 실행시간: 148ms -2025-10-27 16:44:15 [http-nio-8082-exec-5] DEBUG org.hibernate.SQL - - select - k1_0.analysis_id, - k1_0.keyword - from - meeting_keywords k1_0 - where - k1_0.analysis_id=? -2025-10-27 16:46:31 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:46:31 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_36a177_1761550723518","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 16:46:31 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:46:31 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:46:31 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@14144cc9] for TypeConfiguration -2025-10-27 16:46:31 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@5aee40e0] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@14144cc9] -2025-10-27 16:46:31 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 16:46:31 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 16:46:35 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 87960 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 16:46:35 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 16:46:35 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 8 JPA repository interfaces. -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:46:36 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 15 ms. Found 0 Redis repository interfaces. -2025-10-27 16:46:36 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 16:46:36 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 16:46:36 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 16:46:36 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 16:46:36 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1318 ms -2025-10-27 16:46:37 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 16:46:37 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 16:46:37 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@215a329c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@215a329c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@20723ee -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@20723ee -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@21c5c68a -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@21c5c68a -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@5bb39285 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@5bb39285 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@2b0d85bd -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@2b0d85bd -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@102ecb61 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@1fd0ae78 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@2ae5580 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2ae5580 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@1b5f960a -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@53ddabc6 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@361f1647 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@51172948 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@6f2a3b37 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@323b0632 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@7cd8831c -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@146db8a6 -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2a20da9f -2025-10-27 16:46:37 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 16:46:37 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 16:46:37 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@3bbdf835 -2025-10-27 16:46:37 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 16:46:37 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 16:46:37 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@180e33b0) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@270be080) -2025-10-27 16:46:37 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@752ffce3) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@78f35e39) -2025-10-27 16:46:37 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 16:46:37 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@691a5c3a -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@691a5c3a -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@2ae5580` -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:46:37 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:46:37 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@e08d871] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@4ebb7bab] -2025-10-27 16:46:38 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 16:46:38 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@e08d871] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@6ee34fe4] -2025-10-27 16:46:38 [main] DEBUG org.hibernate.SQL - + at java.base/java.lang.Thread.run(Thread.java:1575) +2025-10-29 09:08:09 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error +2025-10-29 09:08:09 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error +2025-10-29 09:08:09 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext +2025-10-29 09:08:26 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} +2025-10-29 09:08:26 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_201291_1761696485816","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} +2025-10-29 09:08:26 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} +2025-10-29 09:08:26 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' +2025-10-29 09:08:26 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@93cc5eb] for TypeConfiguration +2025-10-29 09:08:26 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@49a17c7d] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@93cc5eb] +2025-10-29 09:08:26 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2025-10-29 09:08:26 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2025-10-29 09:08:27 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 23.0.2 with PID 47172 (/Users/jominseo/HGZero/meeting/build/classes/java/main started by jominseo in /Users/jominseo/HGZero/meeting) +2025-10-29 09:08:27 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 +2025-10-29 09:08:27 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 41 ms. Found 9 JPA repository interfaces. +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.AgendaSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:08:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 Redis repository interfaces. +2025-10-29 09:08:28 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) +2025-10-29 09:08:28 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2025-10-29 09:08:28 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] +2025-10-29 09:08:28 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2025-10-29 09:08:28 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 716 ms +2025-10-29 09:08:28 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] +2025-10-29 09:08:28 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final +2025-10-29 09:08:28 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3cfab340 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3cfab340 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3cfab340 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3387ab0 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3387ab0 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@470f0637 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@470f0637 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@6b278b17 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@6b278b17 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@2ae5580 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@2ae5580 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@2ae5580 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@4203529f +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@4203529f +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@4203529f +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@7d82ca56 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@7d82ca56 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@2aaa89c2 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@5a58db42 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@5a58db42 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@217fd3c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@69ac5752 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1736273c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1736273c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@1736273c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@ba86c53 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@ba86c53 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@ba86c53 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@36eb8e07 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@36eb8e07 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@36eb8e07 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3df6494f +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3df6494f +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3df6494f +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@1b5f960a +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@1b5f960a +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@1b5f960a +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@53ddabc6 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@53ddabc6 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@39ac8c0c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@39ac8c0c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@361f1647 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@361f1647 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@361f1647 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@51172948 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@6f2a3b37 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@6f2a3b37 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@323b0632 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@7cd8831c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@7cd8831c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@7cd8831c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@146db8a6 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@2a20da9f +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@40c0437f +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@78b8f818 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@78b8f818 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1e9d721 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1e9d721 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2d3111a1 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@6f2864c3 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@50ef2906 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@1f70bce5 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@3ae91ab3 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@16cb6f51 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@3fc5d397 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@3fc5d397 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@25c8c71e +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@25c8c71e +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@57867d96 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@57867d96 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@1a7a21d0 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@1a7a21d0 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@bb21063 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@bb21063 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6821c63c +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@c2f7c63 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@4790b897 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@4790b897 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@5cba890e +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3a4cb483 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4d770bcd +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@fe156f4 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@fe156f4 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@79b4cff +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@58ac0823 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@2d705998 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@2d705998 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@28a3fc34 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@28a3fc34 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@7582a16b +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@7582a16b +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@7582a16b +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4dd752e8 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4dd752e8 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4dd752e8 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@62c46e53 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@55317c63 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@35d81657 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@35d81657 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@42ef5216 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@42ef5216 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@42ef5216 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3180aee +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@5d94ac8a +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@288b73c1 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@288b73c1 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@104cfb24 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@104cfb24 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@104cfb24 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@5340ccb9 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@5340ccb9 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2bc8caa7 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2bc8caa7 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@582ea164 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@582ea164 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2fccf49e +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2fccf49e +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@7abcc0da +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@7abcc0da +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@174cb0d8 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@3ac406d4 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@1835b783 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1835b783 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@73852720 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@22854f2b +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@5ddf5118 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@7b9d1a4 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@fcd3a6f +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@7845ee8a +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@5f35370b +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@16c8e9b8 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@7030b74c +2025-10-29 09:08:28 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer +2025-10-29 09:08:28 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2025-10-29 09:08:28 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@5e663ab +2025-10-29 09:08:28 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2025-10-29 09:08:28 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) +2025-10-29 09:08:28 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4f0cdd0f) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@22ea6051) +2025-10-29 09:08:28 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@539bb233) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@21b2579d) +2025-10-29 09:08:28 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) +2025-10-29 09:08:28 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@37d3e740 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@37d3e740 +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@1835b783` +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:08:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:08:28 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6cb417fc] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@239bc43f] +2025-10-29 09:08:28 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) +2025-10-29 09:08:28 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6cb417fc] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@93cc5eb] +2025-10-29 09:08:28 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column agenda_number set data type integer +2025-10-29 09:08:28 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column agenda_number set data type integer" via JDBC [ERROR: column "agenda_number" cannot be cast automatically to type integer + Hint: You might need to specify "USING agenda_number::integer".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column agenda_number set data type integer" via JDBC [ERROR: column "agenda_number" cannot be cast automatically to type integer + Hint: You might need to specify "USING agenda_number::integer".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "agenda_number" cannot be cast automatically to type integer + Hint: You might need to specify "USING agenda_number::integer". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:28 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column ai_summary_short set data type TEXT +2025-10-29 09:08:28 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column decisions set data type json +2025-10-29 09:08:28 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column decisions set data type json" via JDBC [ERROR: column "decisions" cannot be cast automatically to type json + Hint: You might need to specify "USING decisions::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column decisions set data type json" via JDBC [ERROR: column "decisions" cannot be cast automatically to type json + Hint: You might need to specify "USING decisions::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "decisions" cannot be cast automatically to type json + Hint: You might need to specify "USING decisions::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:28 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column discussions set data type TEXT +2025-10-29 09:08:28 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column opinions set data type json +2025-10-29 09:08:28 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column opinions set data type json" via JDBC [ERROR: column "opinions" cannot be cast automatically to type json + Hint: You might need to specify "USING opinions::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column opinions set data type json" via JDBC [ERROR: column "opinions" cannot be cast automatically to type json + Hint: You might need to specify "USING opinions::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "opinions" cannot be cast automatically to type json + Hint: You might need to specify "USING opinions::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:28 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column pending_items set data type json +2025-10-29 09:08:29 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column pending_items set data type json" via JDBC [ERROR: column "pending_items" cannot be cast automatically to type json + Hint: You might need to specify "USING pending_items::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column pending_items set data type json" via JDBC [ERROR: column "pending_items" cannot be cast automatically to type json + Hint: You might need to specify "USING pending_items::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "pending_items" cannot be cast automatically to type json + Hint: You might need to specify "USING pending_items::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:29 [main] DEBUG org.hibernate.SQL - + alter table if exists agenda_sections + alter column todos set data type json +2025-10-29 09:08:29 [main] WARN o.h.t.s.i.ExceptionHandlerLoggedImpl - GenerationTarget encountered exception accepting command : Error executing DDL " + alter table if exists agenda_sections + alter column todos set data type json" via JDBC [ERROR: column "todos" cannot be cast automatically to type json + Hint: You might need to specify "USING todos::json".] +org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL " + alter table if exists agenda_sections + alter column todos set data type json" via JDBC [ERROR: column "todos" cannot be cast automatically to type json + Hint: You might need to specify "USING todos::json".] + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:583) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:523) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:341) + at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:240) + at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:119) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144) + at java.base/java.util.HashMap.forEach(HashMap.java:1430) + at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141) + at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37) + at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:322) + at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457) + at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506) + at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409) + at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396) + at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.unicorn.hgzero.meeting.MeetingApplication.main(MeetingApplication.java:38) +Caused by: org.postgresql.util.PSQLException: ERROR: column "todos" cannot be cast automatically to type json + Hint: You might need to specify "USING todos::json". + at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2733) + at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2420) + at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) + at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) + at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) + at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) + at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:312) + at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) + at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) + at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80) + ... 37 common frames omitted +2025-10-29 09:08:29 [main] DEBUG org.hibernate.SQL - alter table if exists meeting_analysis alter column agenda_analyses set data type TEXT -2025-10-27 16:46:38 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:29 [main] DEBUG org.hibernate.SQL - alter table if exists meetings alter column description set data type TEXT -2025-10-27 16:46:38 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:29 [main] DEBUG org.hibernate.SQL - alter table if exists minutes_sections alter column content set data type TEXT -2025-10-27 16:46:38 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:29 [main] DEBUG org.hibernate.SQL - alter table if exists templates alter column description set data type TEXT -2025-10-27 16:46:38 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:29 [main] DEBUG org.hibernate.SQL - alter table if exists templates alter column sections set data type TEXT -2025-10-27 16:46:38 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:08:29 [main] DEBUG org.hibernate.SQL - alter table if exists todos alter column description set data type TEXT -2025-10-27 16:46:38 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@6ee34fe4] for TypeConfiguration -2025-10-27 16:46:38 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:46:38 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 16:46:39 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 16:46:39 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 16:46:39 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 16:46:39 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 16:46:39 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 16:46:39 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 16:46:39 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 16:46:39 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_8dc549_1761551199638"} -2025-10-27 16:46:39 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:46:39 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 16:46:39 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - +2025-10-29 09:08:29 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@93cc5eb] for TypeConfiguration +2025-10-29 09:08:29 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' +2025-10-29 09:08:29 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. +2025-10-29 09:08:29 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 +2025-10-29 09:08:29 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) +2025-10-29 09:08:29 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 +2025-10-29 09:08:29 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library +2025-10-29 09:08:29 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 +2025-10-29 09:08:29 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name +2025-10-29 09:08:29 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name +2025-10-29 09:08:29 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_bf04af_1761696509866"} +2025-10-29 09:08:29 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} +2025-10-29 09:08:29 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2025-10-29 09:08:30 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - -Using generated security password: 953f579d-08d9-45e8-b136-144c1bfe611d +Using generated security password: 3ab2c9d2-7704-42ee-888f-8928bcac162d This generated password is for development use only. Your security configuration must be updated before running your application in production. -2025-10-27 16:46:39 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 16:46:39 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 16:46:40 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 16:46:40 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 16:46:40 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 16:46:40 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 16:46:40 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.357 seconds (process running for 5.609) -2025-10-27 16:46:41 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 16:46:41 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 16:46:41 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms -2025-10-27 16:46:41 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 16:46:41 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:46:41 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 16:46:41 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 16:46:41 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:46:41 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 16:46:41 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 16:46:41 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:46:41 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 16:46:41 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 16:46:41 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:46:41 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 16:46:41 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:46:41 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 16:46:41 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 16:46:41 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 16:46:41 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:46:41 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 16:46:41 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 16:46:41 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:46:41 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 16:46:41 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-27 16:46:41 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:46:41 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-27 16:46:41 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@538972b]] -2025-10-27 16:46:41 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 16:46:41 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 16:46:41 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:46:41 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 16:46:41 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@5e11e39f], /v3/api-docs, ko_KR] -2025-10-27 16:46:42 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 407 ms -2025-10-27 16:46:42 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 417ms -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/meeting-upcoming-3/end -2025-10-27 16:47:39 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 호출 - 파라미터: [meeting-upcoming-3, user-001, 1, 1] -2025-10-27 16:47:39 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MeetingController - 회의 종료 요청 - meetingId: meeting-upcoming-3, userId: user-001 -2025-10-27 16:47:39 [http-nio-8082-exec-4] INFO c.u.h.m.biz.service.MeetingService - Ending meeting: meeting-upcoming-3 -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.MeetingService - Searching for meeting with ID: meeting-upcoming-3 -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.MeetingService - Found meeting: 분기 계획 회의, status: IN_PROGRESS -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.MeetingService - Searching for existing minutes for meeting: meeting-upcoming-3 -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.meeting_id=? - order by - me1_0.version desc - fetch - first ? rows only -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.MeetingService - Found minutes: IN_PROGRESS 회의 3 - 회의록 -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.g.MeetingAnalysisGateway - Finding latest meeting analysis by meetingId: meeting-upcoming-3 -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mae1_0.analysis_id, - mae1_0.agenda_analyses, - mae1_0.completed_at, - mae1_0.created_at, - mae1_0.meeting_id, - mae1_0.minutes_id, - mae1_0.status - from - meeting_analysis mae1_0 - where - mae1_0.meeting_id=? - order by - mae1_0.created_at desc - fetch - first ? rows only -2025-10-27 16:47:39 [http-nio-8082-exec-4] INFO c.u.h.m.biz.service.MeetingService - Using existing analysis data for meeting: meeting-upcoming-3 -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:47:39 [http-nio-8082-exec-4] INFO c.u.h.m.biz.service.MeetingService - Meeting ended successfully: meeting-upcoming-3 -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* update - for com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingEntity */update meetings - set - description=?, - end_time=?, - ended_at=?, - location=?, - organizer_id=?, - purpose=?, - scheduled_at=?, - started_at=?, - status=?, - template_id=?, - title=?, - updated_at=? - where - meeting_id=? -2025-10-27 16:47:39 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MeetingController - 회의 종료 완료 - meetingId: meeting-upcoming-3 -2025-10-27 16:47:39 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.endMeeting 완료 - 실행시간: 295ms -2025-10-27 16:47:39 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - k1_0.analysis_id, - k1_0.keyword - from - meeting_keywords k1_0 - where - k1_0.analysis_id=? -2025-10-27 16:47:47 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:47:47 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_8dc549_1761551199638","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 16:47:47 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:47:47 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:47:47 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@6ee34fe4] for TypeConfiguration -2025-10-27 16:47:47 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@2c1deb8b] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@6ee34fe4] -2025-10-27 16:47:47 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 16:47:47 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 16:48:34 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 88309 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 16:48:34 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 16:48:34 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 8 JPA repository interfaces. -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:48:35 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 16 ms. Found 0 Redis repository interfaces. -2025-10-27 16:48:36 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 16:48:36 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 16:48:36 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 16:48:36 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 16:48:36 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1321 ms -2025-10-27 16:48:36 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 16:48:36 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 16:48:36 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@2697c156 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2697c156 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@234ce7ff -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@780a91d0 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3387ab0 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@470f0637 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@6b278b17 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2ae5580 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4203529f -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7d82ca56 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2aaa89c2 -2025-10-27 16:48:36 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 16:48:36 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 16:48:36 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@346e5cc -2025-10-27 16:48:36 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 16:48:36 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 16:48:36 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@79ae3fb1) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@7fa8fff) -2025-10-27 16:48:36 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@4423692a) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@2175d53f) -2025-10-27 16:48:36 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 16:48:36 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4c599679 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4c599679 -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@2697c156` -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:48:36 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:48:36 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@2941631f] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@6130a6f5] -2025-10-27 16:48:37 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 16:48:37 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@2941631f] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@1a370c7c] -2025-10-27 16:48:37 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 16:48:37 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 16:48:37 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 16:48:37 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 16:48:37 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 16:48:37 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 16:48:37 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@1a370c7c] for TypeConfiguration -2025-10-27 16:48:37 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:48:37 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 16:48:38 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 16:48:38 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 16:48:38 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 16:48:38 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 16:48:38 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 16:48:38 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 16:48:38 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 16:48:38 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_5b5a22_1761551318689"} -2025-10-27 16:48:38 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:48:38 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 16:48:38 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 2e4cf77a-df74-4f02-b228-1f7ef1e943ba - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 16:48:38 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 16:48:39 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 16:48:39 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 16:48:39 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 16:48:39 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 16:48:40 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 16:48:40 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.516 seconds (process running for 5.713) -2025-10-27 16:49:13 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 16:49:13 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 16:49:13 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms -2025-10-27 16:49:13 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/e33f64fc-76bd-41f9-881c-58186af6d451/invite -2025-10-27 16:49:13 [http-nio-8082-exec-1] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-005) -2025-10-27 16:49:13 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/e33f64fc-76bd-41f9-881c-58186af6d451/invite -2025-10-27 16:49:13 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 호출 - 파라미터: [e33f64fc-76bd-41f9-881c-58186af6d451, user-005, 1, 1, com.unicorn.hgzero.meeting.infra.dto.request.InviteParticipantRequest@68f6b2d1] -2025-10-27 16:49:13 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 요청 - meetingId: e33f64fc-76bd-41f9-881c-58186af6d451, email: newparticipant@example.com, inviter: 1 -2025-10-27 16:49:13 [http-nio-8082-exec-1] INFO c.u.h.m.biz.service.MeetingService - Inviting participant to meeting: e33f64fc-76bd-41f9-881c-58186af6d451, email: newparticipant@example.com -2025-10-27 16:49:13 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:49:13 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:49:14 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:49:14 [http-nio-8082-exec-1] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant 실패 - 실행시간: 131ms, 에러: 잘못된 입력 값입니다. -2025-10-27 16:49:14 [http-nio-8082-exec-1] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 실패 - 실행시간: 166ms, 에러: 잘못된 입력 값입니다. -2025-10-27 16:49:14 [http-nio-8082-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 잘못된 입력 값입니다.] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 잘못된 입력 값입니다. - at com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant(MeetingService.java:545) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.inviteParticipant() - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant(MeetingController.java:307) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.inviteParticipant() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:49:14 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:49:14 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:49:14 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:49:46 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/e33f64fc-76bd-41f9-881c-58186af6d451/invite -2025-10-27 16:49:46 [http-nio-8082-exec-2] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-005) -2025-10-27 16:49:46 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/e33f64fc-76bd-41f9-881c-58186af6d451/invite -2025-10-27 16:49:46 [http-nio-8082-exec-2] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 호출 - 파라미터: [e33f64fc-76bd-41f9-881c-58186af6d451, user-005, 1, example@naver.com, com.unicorn.hgzero.meeting.infra.dto.request.InviteParticipantRequest@e7f4d97] -2025-10-27 16:49:46 [http-nio-8082-exec-2] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 요청 - meetingId: e33f64fc-76bd-41f9-881c-58186af6d451, email: newparticipant@example.com, inviter: 1 -2025-10-27 16:49:46 [http-nio-8082-exec-2] INFO c.u.h.m.biz.service.MeetingService - Inviting participant to meeting: e33f64fc-76bd-41f9-881c-58186af6d451, email: newparticipant@example.com -2025-10-27 16:49:46 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:49:46 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:49:46 [http-nio-8082-exec-2] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:49:46 [http-nio-8082-exec-2] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant 실패 - 실행시간: 56ms, 에러: 잘못된 입력 값입니다. -2025-10-27 16:49:46 [http-nio-8082-exec-2] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 실패 - 실행시간: 86ms, 에러: 잘못된 입력 값입니다. -2025-10-27 16:49:46 [http-nio-8082-exec-2] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 잘못된 입력 값입니다.] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 잘못된 입력 값입니다. - at com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant(MeetingService.java:545) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.inviteParticipant() - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant(MeetingController.java:307) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.inviteParticipant() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:49:46 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:49:46 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:49:46 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:54:15 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/e33f64fc-76bd-41f9-881c-58186af6d451/invite -2025-10-27 16:54:15 [http-nio-8082-exec-3] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: user-005 (user-005) -2025-10-27 16:54:15 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/e33f64fc-76bd-41f9-881c-58186af6d451/invite -2025-10-27 16:54:15 [http-nio-8082-exec-3] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 호출 - 파라미터: [e33f64fc-76bd-41f9-881c-58186af6d451, user-005, user-005, user-005@example.com, com.unicorn.hgzero.meeting.infra.dto.request.InviteParticipantRequest@59503b35] -2025-10-27 16:54:15 [http-nio-8082-exec-3] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 요청 - meetingId: e33f64fc-76bd-41f9-881c-58186af6d451, email: du0928@gmail.com, inviter: user-005 -2025-10-27 16:54:15 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@346e5cc (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:54:15 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@20683a3f (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:54:15 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@238a41cb (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:54:15 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@3989ce02 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:54:15 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@fbbb9cf (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 16:54:16 [http-nio-8082-exec-3] INFO c.u.h.m.biz.service.MeetingService - Inviting participant to meeting: e33f64fc-76bd-41f9-881c-58186af6d451, email: du0928@gmail.com -2025-10-27 16:54:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:54:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:54:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:54:16 [http-nio-8082-exec-3] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant 실패 - 실행시간: 45ms, 에러: 잘못된 입력 값입니다. -2025-10-27 16:54:16 [http-nio-8082-exec-3] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 실패 - 실행시간: 127ms, 에러: 잘못된 입력 값입니다. -2025-10-27 16:54:16 [http-nio-8082-exec-3] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 잘못된 입력 값입니다.] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 잘못된 입력 값입니다. - at com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant(MeetingService.java:545) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.inviteParticipant() - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant(MeetingController.java:307) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.inviteParticipant() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:54:16 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:54:16 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:54:16 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/5f9144ed-43db-479a-99bb-17b20a71fb1e/invite -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: user-005 (user-005) -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/5f9144ed-43db-479a-99bb-17b20a71fb1e/invite -2025-10-27 16:57:12 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 호출 - 파라미터: [5f9144ed-43db-479a-99bb-17b20a71fb1e, user-005, user-005, user-005@example.com, com.unicorn.hgzero.meeting.infra.dto.request.InviteParticipantRequest@578daeee] -2025-10-27 16:57:12 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 요청 - meetingId: 5f9144ed-43db-479a-99bb-17b20a71fb1e, email: du0928@gmail.com, inviter: user-005 -2025-10-27 16:57:12 [http-nio-8082-exec-4] INFO c.u.h.m.biz.service.MeetingService - Inviting participant to meeting: 5f9144ed-43db-479a-99bb-17b20a71fb1e, email: du0928@gmail.com -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.user_id, - mpe1_0.meeting_id - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.user_id=? - fetch - first ? rows only -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.user_id, - mpe1_0.meeting_id - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.user_id=? - fetch - first ? rows only -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - ( - mpe1_0.meeting_id, mpe1_0.user_id - ) in ((?, ?)) -2025-10-27 16:57:12 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.gateway.ParticipantGateway - Participant saved: meetingId=5f9144ed-43db-479a-99bb-17b20a71fb1e, userId=du0928@gmail.com -2025-10-27 16:57:12 [http-nio-8082-exec-4] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Creating and starting connection.","connectionId":"MF_5b5a22_1761551318689","hostName":"hgzero-eventhub-ns.servicebus.windows.net","port":5671} -2025-10-27 16:57:12 [http-nio-8082-exec-4] INFO c.a.c.a.i.ReactorExecutor - {"az.sdk.message":"Starting reactor.","connectionId":"MF_5b5a22_1761551318689"} -2025-10-27 16:57:12 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionInit","connectionId":"MF_5b5a22_1761551318689","hostName":"hgzero-eventhub-ns.servicebus.windows.net","namespace":"hgzero-eventhub-ns.servicebus.windows.net"} -2025-10-27 16:57:12 [reactor-executor-1] INFO c.a.c.a.i.handler.ReactorHandler - {"az.sdk.message":"reactor.onReactorInit","connectionId":"MF_5b5a22_1761551318689"} -2025-10-27 16:57:12 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionLocalOpen","connectionId":"MF_5b5a22_1761551318689","errorCondition":null,"errorDescription":null,"hostName":"hgzero-eventhub-ns.servicebus.windows.net"} -2025-10-27 16:57:12 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionBound","connectionId":"MF_5b5a22_1761551318689","hostName":"hgzero-eventhub-ns.servicebus.windows.net","peerDetails":"hgzero-eventhub-ns.servicebus.windows.net:5671"} -2025-10-27 16:57:12 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionRemoteOpen","connectionId":"MF_5b5a22_1761551318689","hostName":"hgzero-eventhub-ns.servicebus.windows.net","remoteContainer":"96b29734d6424cf6a253a767a1108d7d_G27"} -2025-10-27 16:57:12 [reactor-executor-1] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is now active.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:57:12 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteOpen","connectionId":"MF_5b5a22_1761551318689","sessionName":"hgzero-eventhub-name","sessionIncCapacity":0,"sessionOutgoingWindow":2147483647} -2025-10-27 16:57:12 [reactor-executor-1] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Setting CBS channel.","connectionId":"MF_5b5a22_1761551318689"} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteOpen","connectionId":"MF_5b5a22_1761551318689","sessionName":"cbs-session","sessionIncCapacity":0,"sessionOutgoingWindow":2147483647} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Emitting new response channel.","connectionId":"MF_5b5a22_1761551318689","entityPath":"$cbs","linkName":"cbs"} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Setting next AMQP channel.","connectionId":"MF_5b5a22_1761551318689","entityPath":"$cbs"} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Next AMQP channel received.","connectionId":"MF_5b5a22_1761551318689","entityPath":"$cbs","subscriberId":"un_825e3c_1761551833002"} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.handler.SendLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_5b5a22_1761551318689","linkName":"cbs:sender","entityPath":"$cbs","remoteTarget":"Target{address='$cbs', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}"} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Channel is now active.","connectionId":"MF_5b5a22_1761551318689","entityPath":"$cbs"} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.handler.ReceiveLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_5b5a22_1761551318689","entityPath":"$cbs","linkName":"cbs:receiver","remoteSource":"Source{address='$cbs', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=null, outcomes=null, capabilities=null}"} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.ActiveClientTokenManager - {"az.sdk.message":"Scheduling refresh token task.","scopes":"amqp://hgzero-eventhub-ns.servicebus.windows.net/hgzero-eventhub-name"} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.ReactorSession - {"az.sdk.message":"Creating a new send link.","connectionId":"MF_5b5a22_1761551318689","linkName":"hgzero-eventhub-name","sessionName":"hgzero-eventhub-name"} -2025-10-27 16:57:13 [reactor-executor-1] INFO c.a.c.a.i.handler.SendLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_5b5a22_1761551318689","linkName":"hgzero-eventhub-name","entityPath":"hgzero-eventhub-name","remoteTarget":"Target{address='hgzero-eventhub-name', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}"} -2025-10-27 16:57:13 [http-nio-8082-exec-4] INFO c.u.h.m.i.e.p.EventHubPublisher - 이벤트 발행 완료: topic=notification, type=NOTIFICATION_REQUEST, partitionKey=du0928@gmail.com -2025-10-27 16:57:13 [http-nio-8082-exec-4] INFO c.u.h.m.biz.service.MeetingService - Meeting invitation event published for email: du0928@gmail.com, meetingId: 5f9144ed-43db-479a-99bb-17b20a71fb1e -2025-10-27 16:57:13 [http-nio-8082-exec-4] INFO c.u.h.m.biz.service.MeetingService - Participant invited successfully: du0928@gmail.com to meeting 5f9144ed-43db-479a-99bb-17b20a71fb1e -2025-10-27 16:57:13 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* insert for - com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingParticipantEntity */insert - into - meeting_participants (attended, created_at, invitation_status, updated_at, meeting_id, user_id) - values - (?, ?, ?, ?, ?, ?) -2025-10-27 16:57:13 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 완료 - meetingId: 5f9144ed-43db-479a-99bb-17b20a71fb1e, email: du0928@gmail.com -2025-10-27 16:57:13 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 완료 - 실행시간: 621ms -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing POST /api/meetings/5f9144ed-43db-479a-99bb-17b20a71fb1e/invite -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: user-005 (user-005) -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured POST /api/meetings/5f9144ed-43db-479a-99bb-17b20a71fb1e/invite -2025-10-27 16:58:33 [http-nio-8082-exec-6] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 호출 - 파라미터: [5f9144ed-43db-479a-99bb-17b20a71fb1e, user-005, user-005, user-005@example.com, com.unicorn.hgzero.meeting.infra.dto.request.InviteParticipantRequest@7f3a5b7a] -2025-10-27 16:58:33 [http-nio-8082-exec-6] INFO c.u.h.m.i.c.MeetingController - 참석자 초대 요청 - meetingId: 5f9144ed-43db-479a-99bb-17b20a71fb1e, email: du0928@gmail.com, inviter: user-005 -2025-10-27 16:58:33 [http-nio-8082-exec-6] INFO c.u.h.m.biz.service.MeetingService - Inviting participant to meeting: 5f9144ed-43db-479a-99bb-17b20a71fb1e, email: du0928@gmail.com -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.user_id, - mpe1_0.meeting_id - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.user_id=? - fetch - first ? rows only -2025-10-27 16:58:33 [http-nio-8082-exec-6] WARN c.u.h.m.biz.service.MeetingService - Email du0928@gmail.com is already a participant of meeting 5f9144ed-43db-479a-99bb-17b20a71fb1e -2025-10-27 16:58:33 [http-nio-8082-exec-6] ERROR c.u.hgzero.common.aop.LoggingAspect - [Service] com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant 실패 - 실행시간: 50ms, 에러: 이미 존재하는 리소스입니다. -2025-10-27 16:58:33 [http-nio-8082-exec-6] ERROR c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant 실패 - 실행시간: 70ms, 에러: 이미 존재하는 리소스입니다. -2025-10-27 16:58:33 [http-nio-8082-exec-6] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: com.unicorn.hgzero.common.exception.BusinessException: 이미 존재하는 리소스입니다.] with root cause -com.unicorn.hgzero.common.exception.BusinessException: 이미 존재하는 리소스입니다. - at com.unicorn.hgzero.meeting.biz.service.MeetingService.inviteParticipant(MeetingService.java:551) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.biz.service.MeetingService$$SpringCGLIB$$0.inviteParticipant() - at com.unicorn.hgzero.meeting.infra.controller.MeetingController.inviteParticipant(MeetingController.java:307) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MeetingController$$SpringCGLIB$$0.inviteParticipant() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing POST /error -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured POST /error -2025-10-27 16:58:33 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 16:59:13 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:59:13 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_5b5a22_1761551318689","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 16:59:13 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 16:59:13 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:59:13 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@1a370c7c] for TypeConfiguration -2025-10-27 16:59:13 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@2e29cab8] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@1a370c7c] -2025-10-27 16:59:13 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 16:59:13 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteClose","connectionId":"MF_5b5a22_1761551318689","errorCondition":null,"errorDescription":null,"sessionName":"hgzero-eventhub-name"} -2025-10-27 16:59:13 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteClose","connectionId":"MF_5b5a22_1761551318689","errorCondition":null,"errorDescription":null,"sessionName":"cbs-session"} -2025-10-27 16:59:13 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 17:18:31 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 93505 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 17:18:31 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 17:18:31 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 8 JPA repository interfaces. -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 16 ms. Found 0 Redis repository interfaces. -2025-10-27 17:18:32 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 17:18:32 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 17:18:32 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 17:18:32 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 17:18:32 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1391 ms -2025-10-27 17:18:33 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 17:18:33 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 17:18:33 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@47ffa248 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@47ffa248 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@47ffa248 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@18ac25e6 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@18ac25e6 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@5e1a7d3 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@5e1a7d3 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@1eda309d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@1eda309d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@248d2cec -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@248d2cec -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@248d2cec -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@5d77be8e -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@5d77be8e -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@5d77be8e -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@55a055cc -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@55a055cc -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@1ab1d93d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@57167ccb -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@57167ccb -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@37753b69 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@602c167e -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@74c04377 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@74c04377 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@74c04377 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@10d49900 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@10d49900 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@10d49900 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@e645600 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@e645600 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@e645600 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@e7b3e54 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@e7b3e54 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@e7b3e54 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@78d61f17 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@78d61f17 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@78d61f17 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@4cfe9594 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@4cfe9594 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@60861e5d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@60861e5d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@37d81587 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@37d81587 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@37d81587 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@7f3e9acc -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@47d4e28a -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@47d4e28a -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@177068db -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@60f3239f -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@60f3239f -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@60f3239f -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@6b103db7 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@b3042ed -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@1f12d5e0 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@6604f246 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@6604f246 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@c1386b4 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@c1386b4 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@53d9af1 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@c89e263 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@4d5ea776 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@5d68be4f -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@34eb5d01 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@77b22b05 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@4fef5792 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@4fef5792 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@57ed02e6 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@57ed02e6 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@39004e4f -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@39004e4f -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@5f0ca069 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@5f0ca069 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@6a6a2fdd -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@6a6a2fdd -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@552ffa44 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6e66b498 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@54d35ed5 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@54d35ed5 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@6f7c9755 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@45abbd24 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1e32037d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@5059d398 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@5059d398 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@5b1420f9 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@434ee422 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@4de93edd -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@4de93edd -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@53b2e1eb -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@53b2e1eb -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@29db008c -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@29db008c -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@29db008c -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@1d008e61 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@1d008e61 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@1d008e61 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@191b44ca -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@5de243bb -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@2c4cf7eb -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@2c4cf7eb -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@35260785 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@35260785 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@35260785 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@76d828ff -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@39685204 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@72d0196d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@72d0196d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@77cf329d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@77cf329d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@77cf329d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@4067634b -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@4067634b -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@3b64f131 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@3b64f131 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@490d9c41 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@490d9c41 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@47d81427 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@47d81427 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@3c5e4aac -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@3c5e4aac -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@20afd96f -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@565a6af -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@13ebccd -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@13ebccd -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@185a0811 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@77fb1002 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@24cbf894 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@6c19769c -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@434d001d -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@36453773 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4db16677 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@6abb44cb -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@41ddec69 -2025-10-27 17:18:33 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 17:18:33 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 17:18:33 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@35fac3ba -2025-10-27 17:18:33 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 17:18:33 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 17:18:33 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@31f5ffb9) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@19b3d3a4) -2025-10-27 17:18:33 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@3a9040f0) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@33214124) -2025-10-27 17:18:33 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 17:18:33 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4e210016 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4e210016 -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@13ebccd` -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:18:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:18:33 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5d035ab6] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@3407ded1] -2025-10-27 17:18:34 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 17:18:34 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5d035ab6] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@27311c99] -2025-10-27 17:18:34 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 17:18:34 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 17:18:34 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 17:18:34 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 17:18:34 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 17:18:34 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 17:18:34 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@27311c99] for TypeConfiguration -2025-10-27 17:18:34 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:18:34 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 17:18:35 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 17:18:35 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 17:18:35 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 17:18:35 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 17:18:35 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 17:18:35 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 17:18:35 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: aa472d50-68a0-47de-82a2-67f88b89da27 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 17:18:35 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 17:18:35 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 17:18:36 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 17:18:36 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 17:18:36 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 17:18:36 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 17:18:36 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.236 seconds (process running for 5.425) -2025-10-27 17:18:44 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 93587 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 17:18:44 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 17:18:44 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 17:18:44 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:18:44 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 17:18:44 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 70 ms. Found 8 JPA repository interfaces. -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:18:45 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 16 ms. Found 0 Redis repository interfaces. -2025-10-27 17:18:45 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 17:18:45 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 17:18:45 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 17:18:45 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 17:18:45 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1366 ms -2025-10-27 17:18:45 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 17:18:45 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 17:18:45 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@278c998 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@278c998 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@2aaa89c2 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5a58db42 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@69ac5752 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@1736273c -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@ba86c53 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@36eb8e07 -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3df6494f -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1b5f960a -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@53ddabc6 -2025-10-27 17:18:46 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 17:18:46 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 17:18:46 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@7cadf3ca -2025-10-27 17:18:46 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 17:18:46 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 17:18:46 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4e1104f4) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@76219fe) -2025-10-27 17:18:46 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@5eff5e4c) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@2fe2fcc2) -2025-10-27 17:18:46 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 17:18:46 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4fe3f9ef -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4fe3f9ef -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@278c998` -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:18:46 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:18:46 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@68af8288] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@8dc3019] -2025-10-27 17:18:46 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 17:18:46 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@68af8288] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@14144cc9] -2025-10-27 17:18:47 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 17:18:47 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 17:18:47 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 17:18:47 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 17:18:47 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 17:18:47 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 17:18:47 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@14144cc9] for TypeConfiguration -2025-10-27 17:18:47 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:18:47 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 17:18:47 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 17:18:47 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 17:18:47 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 17:18:48 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 17:18:48 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 17:18:48 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 17:18:48 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 17:18:48 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_5d7591_1761553128079"} -2025-10-27 17:18:48 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:18:48 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 17:18:48 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 00577163-54c7-46da-ba32-2e9658d88757 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 17:18:48 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 17:18:48 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 17:18:48 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 17:18:48 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 17:18:48 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 17:18:49 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop' -2025-10-27 17:18:49 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:18:49 [main] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_5d7591_1761553128079","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 17:18:49 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:18:49 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:18:49 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@14144cc9] for TypeConfiguration -2025-10-27 17:18:49 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@490ecccb] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@14144cc9] -2025-10-27 17:18:49 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 17:18:49 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 17:18:49 [main] INFO o.s.b.a.l.ConditionEvaluationReportLogger - - -Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled. -2025-10-27 17:18:49 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8082 was already in use. - -Action: - -Identify and stop the process that's listening on port 8082 or configure this application to listen on another port. - -2025-10-27 17:19:02 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 17:19:02 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 17:19:02 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:19:02 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 호출 - 파라미터: [user-001, 1, 0, 10, modified, desc, all, null, null] -2025-10-27 17:19:02 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 요청 - userId: user-001, page: 0, size: 10, status: all, participationType: null, search: null -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes list by userId: user-001 -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes by creator: user-001 -2025-10-27 17:19:02 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:19:02 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 성공 - userId: user-001, total: 6, filtered: 6 -2025-10-27 17:19:02 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 완료 - 실행시간: 458ms -2025-10-27 17:35:00 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 97339 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 17:35:00 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 17:35:00 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 8 JPA repository interfaces. -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:00 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 15 ms. Found 0 Redis repository interfaces. -2025-10-27 17:35:01 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 17:35:01 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 17:35:01 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 17:35:01 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 17:35:01 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1437 ms -2025-10-27 17:35:01 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 17:35:01 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 17:35:01 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@5ea0a7a9 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@5ea0a7a9 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@7d82ca56 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@2aaa89c2 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@217fd3c -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@69ac5752 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1736273c -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@ba86c53 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@36eb8e07 -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@3df6494f -2025-10-27 17:35:01 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1b5f960a -2025-10-27 17:35:01 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 17:35:01 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 17:35:02 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@7167d81b -2025-10-27 17:35:02 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 17:35:02 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 17:35:02 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@72406594) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4e1104f4) -2025-10-27 17:35:02 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@76219fe) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@5eff5e4c) -2025-10-27 17:35:02 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 17:35:02 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@b5bddfe -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@b5bddfe -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@5ea0a7a9` -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:35:02 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:35:02 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@be9cc86] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@68af8288] -2025-10-27 17:35:02 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 17:35:02 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@be9cc86] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@14144cc9] -2025-10-27 17:35:02 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 17:35:02 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 17:35:02 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 17:35:02 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 17:35:02 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 17:35:02 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 17:35:03 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@14144cc9] for TypeConfiguration -2025-10-27 17:35:03 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:35:03 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 17:35:03 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 17:35:03 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 17:35:03 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 17:35:03 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 17:35:03 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 17:35:03 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 17:35:03 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 17:35:03 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_1689d7_1761554103955"} -2025-10-27 17:35:03 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:35:04 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 17:35:04 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 572ad222-100d-40a7-9972-feda9d2cde38 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 17:35:04 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 17:35:04 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 17:35:04 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 17:35:04 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 17:35:04 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 17:35:05 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop' -2025-10-27 17:35:05 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:35:05 [main] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_1689d7_1761554103955","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 17:35:05 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:35:05 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:35:05 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@14144cc9] for TypeConfiguration -2025-10-27 17:35:05 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@47211e6e] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@14144cc9] -2025-10-27 17:35:05 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 17:35:05 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 17:35:05 [main] INFO o.s.b.a.l.ConditionEvaluationReportLogger - - -Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled. -2025-10-27 17:35:05 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8082 was already in use. - -Action: - -Identify and stop the process that's listening on port 8082 or configure this application to listen on another port. - -2025-10-27 17:35:06 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:35:06 [http-nio-8082-exec-3] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: 1 (user-001) -2025-10-27 17:35:06 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:35:06 [http-nio-8082-exec-3] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 호출 - 파라미터: [user-001, 1, 0, 10, modified, desc, all, null, null] -2025-10-27 17:35:06 [http-nio-8082-exec-3] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 요청 - userId: user-001, page: 0, size: 10, status: all, participationType: null, search: null -2025-10-27 17:35:06 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@35fac3ba (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 17:35:10 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-27 17:35:10 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 17:35:10 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-27 17:35:10 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-27 17:35:10 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 17:35:10 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-27 17:35:10 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 17:35:10 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 17:35:10 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-27 17:35:10 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 17:35:10 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-27 17:35:10 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 17:35:10 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 17:35:10 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-27 17:35:10 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-27 17:35:10 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-27 17:35:10 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 17:35:10 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-27 17:35:10 [http-nio-8082-exec-10] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-27 17:35:10 [http-nio-8082-exec-10] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 17:35:10 [http-nio-8082-exec-10] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-27 17:35:10 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-27 17:35:10 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 17:35:10 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-27 17:35:10 [http-nio-8082-exec-10] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@6ba412ac]] -2025-10-27 17:35:10 [http-nio-8082-exec-10] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 17:35:10 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-27 17:35:10 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-27 17:35:10 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-27 17:35:10 [http-nio-8082-exec-2] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@5c41ba51], /v3/api-docs, ko_KR] -2025-10-27 17:35:10 [http-nio-8082-exec-2] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 458 ms -2025-10-27 17:35:10 [http-nio-8082-exec-2] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 470ms -2025-10-27 17:35:11 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@6e3e1153 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 17:35:16 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@5a4555c8 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 17:35:16 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@9b2333f (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 17:35:16 [http-nio-8082-exec-3] WARN com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to validate connection org.postgresql.jdbc.PgConnection@17980fd3 (This connection has been closed.). Possibly consider using a shorter maxLifetime value. -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes list by userId: user-001 -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes by creator: user-001 -2025-10-27 17:35:16 [http-nio-8082-exec-3] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:35:16 [http-nio-8082-exec-3] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 성공 - userId: user-001, total: 6, filtered: 6 -2025-10-27 17:35:16 [http-nio-8082-exec-3] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 완료 - 실행시간: 10320ms -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: user-001 (user-001) -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:35:22 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 호출 - 파라미터: [user-001, user-001, 0, 10, modified, desc, all, null, null] -2025-10-27 17:35:22 [http-nio-8082-exec-9] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 요청 - userId: user-001, page: 0, size: 10, status: all, participationType: null, search: null -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes list by userId: user-001 -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:22 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:23 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:23 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:35:23 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:35:23 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:35:23 [http-nio-8082-exec-9] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes by creator: user-001 -2025-10-27 17:35:23 [http-nio-8082-exec-9] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:35:23 [http-nio-8082-exec-9] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 성공 - userId: user-001, total: 6, filtered: 6 -2025-10-27 17:35:23 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 완료 - 실행시간: 336ms -2025-10-27 17:35:49 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 97430 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 17:35:49 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 17:35:49 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 17:35:49 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:35:49 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 17:35:49 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 8 JPA repository interfaces. -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:35:50 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-27 17:35:50 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 17:35:50 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 17:35:50 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 17:35:50 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 17:35:50 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1190 ms -2025-10-27 17:35:50 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 17:35:50 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 17:35:50 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3855b27e -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3855b27e -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3855b27e -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5305f936 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5305f936 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@2b1a1a37 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@2b1a1a37 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@7d90764a -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@7d90764a -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6843fdc4 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6843fdc4 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@6843fdc4 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@147375b3 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@147375b3 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@147375b3 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@6f430ea8 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@6f430ea8 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@119f072c -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@66456506 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@66456506 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@69944a90 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@1ed52f44 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@771afdd5 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@771afdd5 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@771afdd5 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3abadb65 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@3abadb65 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3abadb65 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@7131d668 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@7131d668 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@7131d668 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@46a97805 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@46a97805 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@46a97805 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@667dd150 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@667dd150 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@667dd150 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@af04f09 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@af04f09 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@758d4aa9 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@758d4aa9 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@78e97d4d -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@78e97d4d -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@78e97d4d -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@7096d451 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@7816454d -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@7816454d -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@67d180e4 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@54e18a46 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@54e18a46 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@54e18a46 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@1293f8d7 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@58e5fbe5 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@335896bd -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@6b33892a -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@6b33892a -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@666b91db -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@666b91db -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@11a67420 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@663cf5d7 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@11b14ae3 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2b6ee447 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@9cb927e -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@8585cdd -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@1325f967 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@1325f967 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@4f356b98 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@4f356b98 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@1ab85862 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@1ab85862 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@504c415c -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@504c415c -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@6c9e74f3 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@6c9e74f3 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@813ab53 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5030997b -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@62c47480 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@62c47480 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@7de2bdc7 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@683ed81b -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@3c116f26 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@22f046b -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@22f046b -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@637d111d -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@3a917017 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@4153a832 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@4a2dbcfc -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@7b8d6c66 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@6ca367aa -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@30ed4034 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1700d089 -2025-10-27 17:35:50 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@77e6053 -2025-10-27 17:35:50 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 17:35:50 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 17:35:51 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@10e4cc6 -2025-10-27 17:35:51 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 17:35:51 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 17:35:51 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@62525dd3) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@56adbb07) -2025-10-27 17:35:51 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@7be6dabb) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@68fc636a) -2025-10-27 17:35:51 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 17:35:51 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4e826fd4 -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4e826fd4 -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@22f046b` -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:35:51 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:35:51 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@45964b9e] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@166a5659] -2025-10-27 17:35:51 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 17:35:51 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@45964b9e] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@6ea4b4b2] -2025-10-27 17:35:51 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 17:35:51 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 17:35:51 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 17:35:51 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 17:35:51 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 17:35:51 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 17:35:52 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@6ea4b4b2] for TypeConfiguration -2025-10-27 17:35:52 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:35:52 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 17:35:52 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 17:35:52 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 17:35:52 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 17:35:52 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 17:35:52 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 17:35:52 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 17:35:52 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 17:35:52 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_f4c194_1761554152931"} -2025-10-27 17:35:52 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:35:53 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 17:35:53 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: a2c76788-1835-41a5-b9af-6877800f638e - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 17:35:53 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 17:35:53 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 17:35:53 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 17:35:53 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 17:35:53 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 17:35:53 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop' -2025-10-27 17:35:53 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:35:53 [main] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_f4c194_1761554152931","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 17:35:53 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:35:53 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:35:53 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@6ea4b4b2] for TypeConfiguration -2025-10-27 17:35:53 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@2cc83ee8] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@6ea4b4b2] -2025-10-27 17:35:54 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 17:35:54 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 17:35:54 [main] INFO o.s.b.a.l.ConditionEvaluationReportLogger - - -Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled. -2025-10-27 17:35:54 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8082 was already in use. - -Action: - -Identify and stop the process that's listening on port 8082 or configure this application to listen on another port. - -2025-10-27 17:36:27 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 97500 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 17:36:27 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 17:36:27 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 8 JPA repository interfaces. -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:36:27 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-27 17:36:28 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 17:36:28 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 17:36:28 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 17:36:28 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 17:36:28 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1193 ms -2025-10-27 17:36:28 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 17:36:28 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 17:36:28 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@215a329c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@215a329c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@20723ee -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@20723ee -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@21c5c68a -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@21c5c68a -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@5bb39285 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@5bb39285 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@2b0d85bd -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@102ecb61 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@6b278b17 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@6b278b17 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@3df6494f -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1b5f960a -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@39ac8c0c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@361f1647 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@51172948 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@6f2a3b37 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@323b0632 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7cd8831c -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@146db8a6 -2025-10-27 17:36:28 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 17:36:28 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 17:36:28 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@779448b8 -2025-10-27 17:36:28 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 17:36:28 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 17:36:28 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@623ded82) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@180e33b0) -2025-10-27 17:36:28 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@270be080) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@752ffce3) -2025-10-27 17:36:28 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 17:36:28 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@b75f3f4 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@b75f3f4 -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@6b278b17` -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:36:28 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:36:28 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@a08e41b] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@e08d871] -2025-10-27 17:36:29 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 17:36:29 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@a08e41b] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@4b38d912] -2025-10-27 17:36:29 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 17:36:29 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 17:36:29 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 17:36:29 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 17:36:29 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 17:36:29 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 17:36:29 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@4b38d912] for TypeConfiguration -2025-10-27 17:36:29 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:36:30 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 17:36:30 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 17:36:30 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 17:36:30 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 17:36:30 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 17:36:30 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 17:36:30 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 17:36:30 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 17:36:30 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_290da2_1761554190741"} -2025-10-27 17:36:30 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:36:30 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 17:36:30 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 48ee46ef-8dbc-42c4-8f00-0ef172ffc9e7 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 17:36:30 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 17:36:31 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 17:36:31 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 17:36:31 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 17:36:31 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 17:36:31 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 17:36:31 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 4.899 seconds (process running for 5.064) -2025-10-27 17:36:38 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 17:36:38 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 17:36:38 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: user-001 (user-001) -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:36:38 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 호출 - 파라미터: [user-001, user-001, 0, 10, modified, desc, all, null, null] -2025-10-27 17:36:38 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 요청 - userId: user-001, page: 0, size: 10, status: all, participationType: null, search: null -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes list by userId: user-001 -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:36:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.attended=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.attended=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.attended=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.attended=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.attended=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? - and mpe1_0.attended=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes by creator: user-001 -2025-10-27 17:36:39 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:36:39 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 성공 - userId: user-001, total: 6, filtered: 6 -2025-10-27 17:36:39 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 완료 - 실행시간: 495ms -2025-10-27 17:41:28 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:41:28 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_290da2_1761554190741","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 17:41:28 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:41:28 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:41:28 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@4b38d912] for TypeConfiguration -2025-10-27 17:41:28 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@3671214d] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@4b38d912] -2025-10-27 17:41:28 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 17:41:28 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 17:41:31 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 98440 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-27 17:41:31 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 17:41:31 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-27 17:41:31 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:41:31 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 17:41:31 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 8 JPA repository interfaces. -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 17:41:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 15 ms. Found 0 Redis repository interfaces. -2025-10-27 17:41:32 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-27 17:41:32 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 17:41:32 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 17:41:32 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 17:41:32 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1177 ms -2025-10-27 17:41:32 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 17:41:32 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 17:41:32 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@547052 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@25e353dc -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@25e353dc -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@5a58db42 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@217fd3c -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@1736273c -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@ba86c53 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@36eb8e07 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3df6494f -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@1b5f960a -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@53ddabc6 -2025-10-27 17:41:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@39ac8c0c -2025-10-27 17:41:32 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 17:41:32 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 17:41:33 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@34fcc5e3 -2025-10-27 17:41:33 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 17:41:33 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 17:41:33 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@76219fe) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@5eff5e4c) -2025-10-27 17:41:33 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@2fe2fcc2) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@69926b6e) -2025-10-27 17:41:33 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 17:41:33 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@2c86b0ea -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2c86b0ea -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@25e353dc` -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:41:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 17:41:33 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@8dc3019] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@34ab398b] -2025-10-27 17:41:33 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 17:41:33 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@8dc3019] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@54c9c09c] -2025-10-27 17:41:33 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-27 17:41:33 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-27 17:41:33 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-27 17:41:33 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-27 17:41:33 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-27 17:41:33 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-27 17:41:34 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@54c9c09c] for TypeConfiguration -2025-10-27 17:41:34 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:41:34 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 17:41:34 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-27 17:41:34 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-27 17:41:34 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 17:41:35 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-27 17:41:35 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-27 17:41:35 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-27 17:41:35 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-27 17:41:35 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_8f5d94_1761554495108"} -2025-10-27 17:41:35 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:41:35 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 17:41:35 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 868f065d-bd91-4ae5-872e-c33fa056c6ad - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 17:41:35 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 17:41:35 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-27 17:41:35 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 17:41:35 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-27 17:41:35 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-27 17:41:36 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-27 17:41:36 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 4.992 seconds (process running for 5.17) -2025-10-27 17:41:38 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 17:41:38 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 17:41:38 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: user-001 (user-001) -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/minutes?page=0&size=10&sortBy=modified&sortDir=desc&status=all -2025-10-27 17:41:38 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 호출 - 파라미터: [user-001, user-001, 0, 10, modified, desc, all, null, null] -2025-10-27 17:41:38 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 요청 - userId: user-001, page: 0, size: 10, status: all, participationType: null, search: null -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes list by userId: user-001 -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes by creator: user-001 -2025-10-27 17:41:38 [http-nio-8082-exec-1] DEBUG org.hibernate.SQL - - /* */ select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.created_by=? -2025-10-27 17:41:38 [http-nio-8082-exec-1] INFO c.u.h.m.i.c.MinutesController - 회의록 목록 조회 성공 - userId: user-001, total: 6, filtered: 6 -2025-10-27 17:41:38 [http-nio-8082-exec-1] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesList 완료 - 실행시간: 439ms -2025-10-27 17:42:02 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:42:02 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_8f5d94_1761554495108","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-27 17:42:02 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-27 17:42:02 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 17:42:02 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@54c9c09c] for TypeConfiguration -2025-10-27 17:42:02 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@499d6ee9] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@54c9c09c] -2025-10-27 17:42:02 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 17:42:02 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-28 09:58:31 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 23820 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-28 09:58:31 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-28 09:58:31 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-28 09:58:31 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-28 09:58:31 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-28 09:58:31 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 73 ms. Found 8 JPA repository interfaces. -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 09:58:32 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-28 09:58:32 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-28 09:58:32 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-28 09:58:32 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-28 09:58:32 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-28 09:58:32 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1183 ms -2025-10-28 09:58:32 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-28 09:58:32 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-28 09:58:32 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@547052 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@547052 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@215a329c -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@215a329c -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@20723ee -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@21c5c68a -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@3cfab340 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3cfab340 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@1736273c -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@ba86c53 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3df6494f -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@1b5f960a -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@53ddabc6 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@39ac8c0c -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@361f1647 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@51172948 -2025-10-28 09:58:32 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@6f2a3b37 -2025-10-28 09:58:32 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-28 09:58:32 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-28 09:58:33 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@2f3c7b24 -2025-10-28 09:58:33 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-28 09:58:33 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-28 09:58:33 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@69926b6e) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@7ea8224b) -2025-10-28 09:58:33 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@5a010eec) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@623ded82) -2025-10-28 09:58:33 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-28 09:58:33 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4b552b13 -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4b552b13 -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@3cfab340` -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-28 09:58:33 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-28 09:58:33 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@65cc3902] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@c79915a] -2025-10-28 09:58:33 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-28 09:58:33 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@65cc3902] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@44eda25b] -2025-10-28 09:58:34 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-28 09:58:34 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-28 09:58:34 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-28 09:58:34 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-28 09:58:34 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-28 09:58:34 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-28 09:58:34 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@44eda25b] for TypeConfiguration -2025-10-28 09:58:34 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-28 09:58:35 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-28 09:58:35 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-28 09:58:35 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-28 09:58:35 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-28 09:58:35 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-28 09:58:35 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-28 09:58:35 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-28 09:58:35 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-28 09:58:35 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_21f852_1761613115675"} -2025-10-28 09:58:35 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-28 09:58:35 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-28 09:58:35 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 7be2624b-38cb-4246-b43c-35579ba84021 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-28 09:58:35 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-28 09:58:35 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-28 09:58:36 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-28 09:58:36 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-28 09:58:36 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-28 09:58:36 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-28 09:58:36 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.64 seconds (process running for 5.861) -2025-10-28 09:58:48 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-28 09:58:48 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-28 09:58:48 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 13 ms -2025-10-28 09:58:48 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-28 09:58:48 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 09:58:48 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-28 09:58:48 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-28 09:58:48 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 09:58:48 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-28 09:58:48 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-28 09:58:48 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-28 09:58:48 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-28 09:58:48 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-28 09:58:48 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 09:58:48 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-28 09:58:48 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 09:58:48 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 09:58:48 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 09:58:48 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-28 09:58:48 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-28 09:58:48 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-28 09:58:48 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-28 09:58:48 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-28 09:58:48 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 09:58:48 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 09:58:48 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-28 09:58:48 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-28 09:58:48 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@1ce72522]] -2025-10-28 09:58:48 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-28 09:58:48 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-28 09:58:48 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 09:58:48 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-28 09:58:48 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@5e04a465], /v3/api-docs, ko_KR] -2025-10-28 09:58:48 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 445 ms -2025-10-28 09:58:48 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 455ms -2025-10-28 09:59:47 [http-nio-8082-exec-10] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/meetings/minutes/minutes-draft-1 -2025-10-28 09:59:47 [http-nio-8082-exec-10] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: user-001 (user-001) -2025-10-28 09:59:47 [http-nio-8082-exec-10] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/meetings/minutes/minutes-draft-1 -2025-10-28 09:59:47 [http-nio-8082-exec-10] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 호출 - 파라미터: [user-001, user-001, minutes-draft-1] -2025-10-28 09:59:47 [http-nio-8082-exec-10] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 요청 - userId: user-001, minutesId: minutes-draft-1 -2025-10-28 09:59:47 [http-nio-8082-exec-10] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes DTO by id: minutes-draft-1 -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG org.hibernate.SQL - - select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.minutes_id=? -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG c.u.h.m.biz.service.MeetingService - Getting meeting: meeting-completed-1 -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG c.u.h.m.b.s.MinutesSectionService - Getting sections by minutes: minutes-draft-1 -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG org.hibernate.SQL - - /* SELECT - m - FROM - MinutesSectionEntity m - WHERE - m.minutesId = :minutesId - ORDER BY - m.order ASC */ select - mse1_0.section_id, - mse1_0.content, - mse1_0.created_at, - mse1_0.locked, - mse1_0.locked_by, - mse1_0.minutes_id, - mse1_0."order", - mse1_0.title, - mse1_0.type, - mse1_0.updated_at, - mse1_0.verified - from - minutes_sections mse1_0 - where - mse1_0.minutes_id=? - order by - mse1_0."order" -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG c.u.h.m.biz.service.TodoService - Getting todos by minutes: minutes-draft-1 -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG org.hibernate.SQL - - /* */ select - te1_0.todo_id, - te1_0.assignee_id, - te1_0.completed_at, - te1_0.created_at, - te1_0.description, - te1_0.due_date, - te1_0.meeting_id, - te1_0.minutes_id, - te1_0.priority, - te1_0.status, - te1_0.title, - te1_0.updated_at - from - todos te1_0 - where - te1_0.minutes_id=? -2025-10-28 09:59:48 [http-nio-8082-exec-10] DEBUG c.u.h.m.infra.cache.CacheService - 회의록 상세 캐시 저장 - minutesId: minutes-draft-1 -2025-10-28 09:59:48 [http-nio-8082-exec-10] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 성공 - minutesId: minutes-draft-1 -2025-10-28 09:59:48 [http-nio-8082-exec-10] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 완료 - 실행시간: 508ms -2025-10-28 10:03:49 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-28 10:03:49 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_21f852_1761613115675","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-28 10:03:49 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-28 10:03:49 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-28 10:03:49 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@44eda25b] for TypeConfiguration -2025-10-28 10:03:49 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@20908216] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@44eda25b] -2025-10-28 10:03:49 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-28 10:03:49 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-28 10:57:03 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 34844 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-28 10:57:03 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-28 10:57:03 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 8 JPA repository interfaces. -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 10:57:03 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-28 10:57:04 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-28 10:57:04 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-28 10:57:04 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-28 10:57:04 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-28 10:57:04 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1262 ms -2025-10-28 10:57:04 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-28 10:57:04 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-28 10:57:04 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@ba87c11 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@17d19538 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@6068cda1 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@644e6a8e -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@2ccecae2 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@37ade216 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@118e2487 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@6032622 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@5cc075da -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@4258106 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@64ef2719 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@7b423f90 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@24f3fb87 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@c7673ae -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@113c4ad6 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7be859de -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@40fcaae7 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@7fa85a55 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@cb1c58c -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@352e4b6d -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@10a064bd -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@2de7fe0e -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2ff8d39b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@684a802a -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@7b5c9412 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@69d902f9 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@547052 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@547052 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3ca3eba2 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@23c00420 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@22f046b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@215a329c -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@20723ee -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@21c5c68a -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@5bb39285 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@5bb39285 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2b0d85bd -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@102ecb61 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@1fd0ae78 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@1fd0ae78 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@583030bd -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@583030bd -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@1f57666b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@1f57666b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@1f57666b -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@7944c323 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@7944c323 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@7944c323 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@637d111d -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@3a917017 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@1ed12d10 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@1ed12d10 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@4153a832 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@4153a832 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@4153a832 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@4a2dbcfc -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@7b8d6c66 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@6ca367aa -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@6ca367aa -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@30ed4034 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@30ed4034 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@30ed4034 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@1700d089 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@1700d089 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@77e6053 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@77e6053 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7097d921 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7097d921 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2a21cbe7 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2a21cbe7 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@3bb4c2b2 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@3bb4c2b2 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4fbc516f -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@1acc768 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@7cd8831c -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@7cd8831c -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@16cb6f51 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@3fc5d397 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@57867d96 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@1a7a21d0 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@bb21063 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@6821c63c -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@c2f7c63 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@4790b897 -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@5cba890e -2025-10-28 10:57:04 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-28 10:57:04 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-28 10:57:04 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@282240 -2025-10-28 10:57:04 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-28 10:57:04 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-28 10:57:04 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@5b5a89d1) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@267b678f) -2025-10-28 10:57:04 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@4803bf73) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@13731ff4) -2025-10-28 10:57:04 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-28 10:57:04 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@4ef277ef -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4ef277ef -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@7cd8831c` -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-28 10:57:04 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-28 10:57:05 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@613a608e] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@37b1218] -2025-10-28 10:57:05 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-28 10:57:05 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@613a608e] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@7dcc6679] -2025-10-28 10:57:05 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-28 10:57:05 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-28 10:57:05 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-28 10:57:05 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-28 10:57:05 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-28 10:57:05 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-28 10:57:05 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@7dcc6679] for TypeConfiguration -2025-10-28 10:57:05 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-28 10:57:06 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-28 10:57:06 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-28 10:57:06 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-28 10:57:06 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-28 10:57:06 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-28 10:57:06 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-28 10:57:06 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-28 10:57:06 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-28 10:57:06 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_d04f20_1761616626737"} -2025-10-28 10:57:06 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-28 10:57:07 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-28 10:57:07 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: a53302e5-6679-4e60-84a2-068890c710d2 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-28 10:57:07 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-28 10:57:07 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-28 10:57:07 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-28 10:57:07 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-28 10:57:07 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-28 10:57:07 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-28 10:57:07 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 5.021 seconds (process running for 5.205) -2025-10-28 10:57:11 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-28 10:57:11 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-28 10:57:11 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms -2025-10-28 10:57:11 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-28 10:57:11 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 10:57:11 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-28 10:57:11 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-28 10:57:11 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 10:57:11 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-28 10:57:11 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 10:57:11 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-28 10:57:11 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-28 10:57:11 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 10:57:11 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-28 10:57:11 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-28 10:57:11 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-28 10:57:11 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 10:57:11 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-28 10:57:11 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-28 10:57:11 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 10:57:11 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-28 10:57:11 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-28 10:57:11 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 10:57:11 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-28 10:57:11 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-28 10:57:11 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 10:57:11 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-28 10:57:11 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@1eb7603d]] -2025-10-28 10:57:11 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 1ms -2025-10-28 10:57:11 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-28 10:57:11 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 10:57:11 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-28 10:57:11 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@6590457], /v3/api-docs, ko_KR] -2025-10-28 10:57:11 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 404 ms -2025-10-28 10:57:11 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 414ms -2025-10-28 10:57:34 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/meetings/minutes/minutes-draft-1 -2025-10-28 10:57:34 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: user-001 (user-001) -2025-10-28 10:57:34 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/meetings/minutes/minutes-draft-1 -2025-10-28 10:57:34 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 호출 - 파라미터: [user-001, user-001, minutes-draft-1] -2025-10-28 10:57:34 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 요청 - userId: user-001, minutesId: minutes-draft-1 -2025-10-28 10:57:34 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes DTO by id: minutes-draft-1 -2025-10-28 10:57:34 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.minutes_id=? -2025-10-28 10:57:34 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.MeetingService - Getting meeting: meeting-completed-1 -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG c.u.h.m.b.s.MinutesSectionService - Getting sections by minutes: minutes-draft-1 -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* SELECT - m - FROM - MinutesSectionEntity m - WHERE - m.minutesId = :minutesId - ORDER BY - m.order ASC */ select - mse1_0.section_id, - mse1_0.content, - mse1_0.created_at, - mse1_0.locked, - mse1_0.locked_by, - mse1_0.minutes_id, - mse1_0."order", - mse1_0.title, - mse1_0.type, - mse1_0.updated_at, - mse1_0.verified - from - minutes_sections mse1_0 - where - mse1_0.minutes_id=? - order by - mse1_0."order" -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.TodoService - Getting todos by minutes: minutes-draft-1 -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - te1_0.todo_id, - te1_0.assignee_id, - te1_0.completed_at, - te1_0.created_at, - te1_0.description, - te1_0.due_date, - te1_0.meeting_id, - te1_0.minutes_id, - te1_0.priority, - te1_0.status, - te1_0.title, - te1_0.updated_at - from - todos te1_0 - where - te1_0.minutes_id=? -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG c.u.h.m.b.s.MinutesSectionService - Getting sections by minutes: minutes-draft-1 -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* SELECT - m - FROM - MinutesSectionEntity m - WHERE - m.minutesId = :minutesId - ORDER BY - m.order ASC */ select - mse1_0.section_id, - mse1_0.content, - mse1_0.created_at, - mse1_0.locked, - mse1_0.locked_by, - mse1_0.minutes_id, - mse1_0."order", - mse1_0.title, - mse1_0.type, - mse1_0.updated_at, - mse1_0.verified - from - minutes_sections mse1_0 - where - mse1_0.minutes_id=? - order by - mse1_0."order" -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.gateway.AiServiceGateway - AI 분석 결과 캐시 미스, AI 서비스 호출 - minutesId: minutes-draft-1 -2025-10-28 10:57:35 [http-nio-8082-exec-4] ERROR c.u.h.m.i.gateway.AiServiceGateway - AI 서비스 호출 실패 - minutesId: minutes-draft-1, error: I/O error on POST request for "http://ai-service:8080/api/v1/analysis/minutes": ai-service -org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://ai-service:8080/api/v1/analysis/minutes": ai-service - at org.springframework.web.client.RestTemplate.createResourceAccessException(RestTemplate.java:915) - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:895) - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:790) - at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:672) - at com.unicorn.hgzero.meeting.infra.gateway.AiServiceGateway.requestAiAnalysis(AiServiceGateway.java:107) - at com.unicorn.hgzero.meeting.infra.gateway.AiServiceGateway.getAiAnalysis(AiServiceGateway.java:51) - at com.unicorn.hgzero.meeting.infra.controller.MinutesController.enhanceWithAiAnalysis(MinutesController.java:1550) - at com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail(MinutesController.java:156) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MinutesController$$SpringCGLIB$$0.getMinutesDetail() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -Caused by: java.net.UnknownHostException: ai-service - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567) - at java.base/java.net.Socket.connect(Socket.java:751) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:282) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:386) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:408) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1320) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1253) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1139) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1068) - at org.springframework.http.client.SimpleClientHttpRequest.executeInternal(SimpleClientHttpRequest.java:79) - at org.springframework.http.client.AbstractStreamingClientHttpRequest.executeInternal(AbstractStreamingClientHttpRequest.java:70) - at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:66) - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:889) - ... 158 common frames omitted -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG c.u.h.m.b.s.MinutesSectionService - Getting sections by minutes: minutes-draft-1 -2025-10-28 10:57:35 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* SELECT - m - FROM - MinutesSectionEntity m - WHERE - m.minutesId = :minutesId - ORDER BY - m.order ASC */ select - mse1_0.section_id, - mse1_0.content, - mse1_0.created_at, - mse1_0.locked, - mse1_0.locked_by, - mse1_0.minutes_id, - mse1_0."order", - mse1_0.title, - mse1_0.type, - mse1_0.updated_at, - mse1_0.verified - from - minutes_sections mse1_0 - where - mse1_0.minutes_id=? - order by - mse1_0."order" -2025-10-28 10:57:35 [http-nio-8082-exec-4] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Creating and starting connection.","connectionId":"MF_d04f20_1761616626737","hostName":"hgzero-eventhub-ns.servicebus.windows.net","port":5671} -2025-10-28 10:57:35 [http-nio-8082-exec-4] INFO c.a.c.a.i.ReactorExecutor - {"az.sdk.message":"Starting reactor.","connectionId":"MF_d04f20_1761616626737"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionInit","connectionId":"MF_d04f20_1761616626737","hostName":"hgzero-eventhub-ns.servicebus.windows.net","namespace":"hgzero-eventhub-ns.servicebus.windows.net"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.handler.ReactorHandler - {"az.sdk.message":"reactor.onReactorInit","connectionId":"MF_d04f20_1761616626737"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionLocalOpen","connectionId":"MF_d04f20_1761616626737","errorCondition":null,"errorDescription":null,"hostName":"hgzero-eventhub-ns.servicebus.windows.net"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionBound","connectionId":"MF_d04f20_1761616626737","hostName":"hgzero-eventhub-ns.servicebus.windows.net","peerDetails":"hgzero-eventhub-ns.servicebus.windows.net:5671"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionRemoteOpen","connectionId":"MF_d04f20_1761616626737","hostName":"hgzero-eventhub-ns.servicebus.windows.net","remoteContainer":"61ab9501db4349b1920e23e2533cf7a3_G11"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is now active.","entityPath":"hgzero-eventhub-name"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteOpen","connectionId":"MF_d04f20_1761616626737","sessionName":"hgzero-eventhub-name","sessionIncCapacity":0,"sessionOutgoingWindow":2147483647} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Setting CBS channel.","connectionId":"MF_d04f20_1761616626737"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteOpen","connectionId":"MF_d04f20_1761616626737","sessionName":"cbs-session","sessionIncCapacity":0,"sessionOutgoingWindow":2147483647} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Emitting new response channel.","connectionId":"MF_d04f20_1761616626737","entityPath":"$cbs","linkName":"cbs"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Setting next AMQP channel.","connectionId":"MF_d04f20_1761616626737","entityPath":"$cbs"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Next AMQP channel received.","connectionId":"MF_d04f20_1761616626737","entityPath":"$cbs","subscriberId":"un_c1c625_1761616655923"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.handler.SendLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_d04f20_1761616626737","linkName":"cbs:sender","entityPath":"$cbs","remoteTarget":"Target{address='$cbs', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Channel is now active.","connectionId":"MF_d04f20_1761616626737","entityPath":"$cbs"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.handler.ReceiveLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_d04f20_1761616626737","entityPath":"$cbs","linkName":"cbs:receiver","remoteSource":"Source{address='$cbs', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=null, outcomes=null, capabilities=null}"} -2025-10-28 10:57:35 [reactor-executor-1] INFO c.a.c.a.i.ActiveClientTokenManager - {"az.sdk.message":"Scheduling refresh token task.","scopes":"amqp://hgzero-eventhub-ns.servicebus.windows.net/hgzero-eventhub-name"} -2025-10-28 10:57:36 [reactor-executor-1] INFO c.a.c.a.i.ReactorSession - {"az.sdk.message":"Creating a new send link.","connectionId":"MF_d04f20_1761616626737","linkName":"hgzero-eventhub-name","sessionName":"hgzero-eventhub-name"} -2025-10-28 10:57:36 [reactor-executor-1] INFO c.a.c.a.i.handler.SendLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_d04f20_1761616626737","linkName":"hgzero-eventhub-name","entityPath":"hgzero-eventhub-name","remoteTarget":"Target{address='hgzero-eventhub-name', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}"} -2025-10-28 10:57:36 [http-nio-8082-exec-4] INFO c.u.h.m.i.e.p.EventHubPublisher - 이벤트 발행 완료: topic=ai-analysis, type=MINUTES_ANALYSIS_REQUEST, partitionKey=minutes-draft-1 -2025-10-28 10:57:36 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MinutesController - AI 분석 요청 이벤트 발행 완료 - minutesId: minutes-draft-1, eventId: analysis-minutes-draft-1-1761616655565 -2025-10-28 10:57:36 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.MinutesController - AI 분석 요청 이벤트 발행 완료 - minutesId: minutes-draft-1 -2025-10-28 10:57:36 [http-nio-8082-exec-4] DEBUG c.u.h.m.infra.cache.CacheService - 회의록 상세 캐시 저장 - minutesId: minutes-draft-1 -2025-10-28 10:57:36 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 성공 - minutesId: minutes-draft-1 -2025-10-28 10:57:36 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 완료 - 실행시간: 1737ms -2025-10-28 11:01:55 [lettuce-nioEventLoop-6-1] INFO i.l.core.protocol.CommandHandler - null Unexpected exception during request: java.net.SocketException: Connection reset -java.net.SocketException: Connection reset - at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:401) - at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:434) - at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255) - at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:1583) -2025-10-28 11:01:55 [lettuce-eventExecutorLoop-1-2] INFO i.l.core.protocol.ConnectionWatchdog - Reconnecting, last destination was /20.249.177.114:6379 -2025-10-28 11:01:55 [lettuce-nioEventLoop-6-2] INFO i.l.c.protocol.ReconnectionHandler - Reconnected to 20.249.177.114/:6379 -2025-10-28 11:05:51 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Upstream connection publisher was completed. Terminating processor.","entityPath":"hgzero-eventhub-name"} -2025-10-28 11:05:51 [SpringApplicationShutdownHook] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Disposing of ReactorConnection.","connectionId":"MF_d04f20_1761616626737","isTransient":false,"isInitiatedByClient":true,"shutdownMessage":"Disposed by client."} -2025-10-28 11:05:51 [SpringApplicationShutdownHook] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is disposed.","entityPath":"hgzero-eventhub-name"} -2025-10-28 11:05:51 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-28 11:05:51 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteClose","connectionId":"MF_d04f20_1761616626737","errorCondition":null,"errorDescription":null,"sessionName":"hgzero-eventhub-name"} -2025-10-28 11:05:51 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteClose","connectionId":"MF_d04f20_1761616626737","errorCondition":null,"errorDescription":null,"sessionName":"cbs-session"} -2025-10-28 11:05:51 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@7dcc6679] for TypeConfiguration -2025-10-28 11:05:51 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@135dcdf2] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@7dcc6679] -2025-10-28 11:05:51 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-28 11:05:51 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-28 11:05:53 [main] INFO c.u.h.meeting.MeetingApplication - Starting MeetingApplication using Java 21.0.8 with PID 36947 (/Users/adela/home/workspace/recent/HGZero/meeting/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/meeting) -2025-10-28 11:05:53 [main] DEBUG c.u.h.meeting.MeetingApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-28 11:05:53 [main] INFO c.u.h.meeting.MeetingApplication - The following 1 profile is active: "dev" -2025-10-28 11:05:53 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-28 11:05:53 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-28 11:05:53 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 70 ms. Found 8 JPA repository interfaces. -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingParticipantJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.SessionJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TemplateJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-28 11:05:54 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 14 ms. Found 0 Redis repository interfaces. -2025-10-28 11:05:54 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8082 (http) -2025-10-28 11:05:54 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-28 11:05:54 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-28 11:05:54 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-28 11:05:54 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1158 ms -2025-10-28 11:05:54 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-28 11:05:54 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-28 11:05:54 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@1325f967 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@1325f967 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@1325f967 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@4f356b98 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@4f356b98 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@1ab85862 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@1ab85862 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@504c415c -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@504c415c -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6c9e74f3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6c9e74f3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@6c9e74f3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@813ab53 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@813ab53 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@813ab53 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@5030997b -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@5030997b -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@62c47480 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@7de2bdc7 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@7de2bdc7 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@683ed81b -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@3c116f26 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@7db06c50 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@1554eaa4 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@b340615 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3c6b300a -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@4247093b -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@7074da1d -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@5bdb6ea8 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@3e55eeb9 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@44a13699 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@1253b822 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@127d2aee -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@3cc2e3e -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@4e14d520 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@4189e668 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@3a589eed -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@5807ea46 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@305289b3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@3ee68377 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@4037cdb0 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@27055a2a -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@33e4068 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@9499643 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@776d8097 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@7a34505a -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@b787274 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@4ec616d6 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@55b45ea1 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@d5a72cd -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@45f95ac0 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@3b77940f -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@4c418496 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@12d35bc9 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1df32c09 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1aa31454 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@5a8656a2 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@52035328 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5614ae05 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@54970127 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@3c4c7e51 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@749ee0e3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@7891cf3 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@6bfbab1c -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@349aeec4 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@3700994c -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@78a165db -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@4eb48298 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@2d3bb944 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@1e429f56 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@6dbeaef8 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@7744195 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@77f529a6 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7d47b021 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@6516181f -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@40cb95c1 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@1ead3c67 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@5e2b512b -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@12c78f36 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@12c78f36 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@5e3405a1 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@22bfd4b -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@5fa9247b -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@21ce3b22 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@7cd25bf5 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@e2f6e13 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@18b30951 -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@48f4264e -2025-10-28 11:05:54 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2697c156 -2025-10-28 11:05:54 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-28 11:05:54 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-28 11:05:55 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@2fd8b081 -2025-10-28 11:05:55 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-28 11:05:55 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-28 11:05:55 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4853f592) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@52d434c1) -2025-10-28 11:05:55 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@5d035ab6) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@3407ded1) -2025-10-28 11:05:55 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-28 11:05:55 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@31de8099 -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@31de8099 -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@12c78f36` -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-28 11:05:55 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-28 11:05:55 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7f53b345] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@76ee7301] -2025-10-28 11:05:55 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-28 11:05:55 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7f53b345] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@3a9a12a1] -2025-10-28 11:05:55 [main] DEBUG org.hibernate.SQL - - alter table if exists meeting_analysis - alter column agenda_analyses set data type TEXT -2025-10-28 11:05:55 [main] DEBUG org.hibernate.SQL - - alter table if exists meetings - alter column description set data type TEXT -2025-10-28 11:05:55 [main] DEBUG org.hibernate.SQL - - alter table if exists minutes_sections - alter column content set data type TEXT -2025-10-28 11:05:55 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column description set data type TEXT -2025-10-28 11:05:55 [main] DEBUG org.hibernate.SQL - - alter table if exists templates - alter column sections set data type TEXT -2025-10-28 11:05:55 [main] DEBUG org.hibernate.SQL - - alter table if exists todos - alter column description set data type TEXT -2025-10-28 11:05:56 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@3a9a12a1] for TypeConfiguration -2025-10-28 11:05:56 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-28 11:05:56 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-28 11:05:56 [main] INFO c.u.h.m.infra.config.RedisConfig - Redis Lettuce Client 설정 완료 - Standalone 모드 (Master-Replica 자동 탐색 비활성화) -2025-10-28 11:05:56 [main] INFO c.u.h.m.infra.config.RedisConfig - LettuceConnectionFactory 설정 완료 - Host: 20.249.177.114:6379, Database: 1 -2025-10-28 11:05:56 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-28 11:05:56 [main] INFO c.u.h.m.infra.config.RedisConfig - RedisTemplate 설정 완료 -2025-10-28 11:05:56 [main] INFO c.u.h.m.infra.cache.CacheConfig - ObjectMapper 설정 완료 -2025-10-28 11:05:56 [main] INFO c.u.h.m.infra.config.EventHubConfig - Initializing Azure EventHub configuration with hub name: hgzero-eventhub-name -2025-10-28 11:05:56 [main] INFO c.u.h.m.infra.config.EventHubConfig - Creating EventHub producer for hub: hgzero-eventhub-name -2025-10-28 11:05:56 [main] INFO c.a.m.e.EventHubClientBuilder - {"az.sdk.message":"Emitting a single connection.","connectionId":"MF_7c4b65_1761617156934"} -2025-10-28 11:05:56 [main] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Setting next AMQP channel.","entityPath":"hgzero-eventhub-name"} -2025-10-28 11:05:57 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-28 11:05:57 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 047bc984-1f8f-442a-a773-685a296e71b1 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-28 11:05:57 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-28 11:05:57 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} -2025-10-28 11:05:57 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-28 11:05:57 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter -2025-10-28 11:05:57 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) -2025-10-28 11:05:58 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' -2025-10-28 11:05:58 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 4.849 seconds (process running for 5.011) -2025-10-28 11:06:00 [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-28 11:06:00 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-28 11:06:00 [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms -2025-10-28 11:06:00 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.html -2025-10-28 11:06:00 [http-nio-8082-exec-1] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 11:06:00 [http-nio-8082-exec-1] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.html -2025-10-28 11:06:00 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui.css -2025-10-28 11:06:00 [http-nio-8082-exec-2] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 11:06:00 [http-nio-8082-exec-2] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui.css -2025-10-28 11:06:00 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-28 11:06:00 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/index.css -2025-10-28 11:06:00 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-initializer.js -2025-10-28 11:06:00 [http-nio-8082-exec-3] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 11:06:00 [http-nio-8082-exec-5] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 11:06:00 [http-nio-8082-exec-3] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/index.css -2025-10-28 11:06:00 [http-nio-8082-exec-5] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-standalone-preset.js -2025-10-28 11:06:00 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/swagger-ui-bundle.js -2025-10-28 11:06:00 [http-nio-8082-exec-6] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 11:06:00 [http-nio-8082-exec-6] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-initializer.js -2025-10-28 11:06:00 [http-nio-8082-exec-4] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 11:06:00 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/swagger-ui-bundle.js -2025-10-28 11:06:00 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Securing GET /swagger-ui/favicon-32x32.png -2025-10-28 11:06:00 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs/swagger-config -2025-10-28 11:06:00 [http-nio-8082-exec-8] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 11:06:00 [http-nio-8082-exec-7] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 11:06:00 [http-nio-8082-exec-8] DEBUG o.s.security.web.FilterChainProxy - Secured GET /swagger-ui/favicon-32x32.png -2025-10-28 11:06:00 [http-nio-8082-exec-7] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs/swagger-config -2025-10-28 11:06:00 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@4d8bdc87]] -2025-10-28 11:06:00 [http-nio-8082-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-28 11:06:00 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Securing GET /v3/api-docs -2025-10-28 11:06:00 [http-nio-8082-exec-9] DEBUG o.s.s.w.a.AnonymousAuthenticationFilter - Set SecurityContextHolder to anonymous SecurityContext -2025-10-28 11:06:00 [http-nio-8082-exec-9] DEBUG o.s.security.web.FilterChainProxy - Secured GET /v3/api-docs -2025-10-28 11:06:00 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@6c85e5b6], /v3/api-docs, ko_KR] -2025-10-28 11:06:00 [http-nio-8082-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 413 ms -2025-10-28 11:06:00 [http-nio-8082-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 425ms -2025-10-28 11:06:18 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Securing GET /api/meetings/minutes/minutes-draft-1 -2025-10-28 11:06:18 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.j.JwtAuthenticationFilter - 헤더 기반 인증된 사용자: user-001 (user-001) -2025-10-28 11:06:18 [http-nio-8082-exec-4] DEBUG o.s.security.web.FilterChainProxy - Secured GET /api/meetings/minutes/minutes-draft-1 -2025-10-28 11:06:18 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 호출 - 파라미터: [user-001, user-001, minutes-draft-1] -2025-10-28 11:06:18 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 요청 - userId: user-001, minutesId: minutes-draft-1 -2025-10-28 11:06:18 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.MinutesService - Getting minutes DTO by id: minutes-draft-1 -2025-10-28 11:06:18 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - me1_0.minutes_id, - me1_0.created_at, - me1_0.created_by, - me1_0.finalized_at, - me1_0.finalized_by, - me1_0.meeting_id, - me1_0.status, - me1_0.title, - me1_0.updated_at, - me1_0.version - from - minutes me1_0 - where - me1_0.minutes_id=? -2025-10-28 11:06:18 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - s1_0.minutes_id, - s1_0.section_id, - s1_0.content, - s1_0.created_at, - s1_0.locked, - s1_0.locked_by, - s1_0."order", - s1_0.title, - s1_0.type, - s1_0.updated_at, - s1_0.verified - from - minutes_sections s1_0 - where - s1_0.minutes_id=? -2025-10-28 11:06:18 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - me1_0.meeting_id, - me1_0.created_at, - me1_0.description, - me1_0.end_time, - me1_0.ended_at, - me1_0.location, - me1_0.organizer_id, - me1_0.purpose, - me1_0.scheduled_at, - me1_0.started_at, - me1_0.status, - me1_0.template_id, - me1_0.title, - me1_0.updated_at - from - meetings me1_0 - where - me1_0.meeting_id=? -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - select - p1_0.meeting_id, - p1_0.user_id, - p1_0.attended, - p1_0.created_at, - p1_0.invitation_status, - p1_0.updated_at - from - meeting_participants p1_0 - where - p1_0.meeting_id=? -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - count(*) - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.MeetingService - Getting meeting: meeting-completed-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG c.u.h.m.b.s.MinutesSectionService - Getting sections by minutes: minutes-draft-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* SELECT - m - FROM - MinutesSectionEntity m - WHERE - m.minutesId = :minutesId - ORDER BY - m.order ASC */ select - mse1_0.section_id, - mse1_0.content, - mse1_0.created_at, - mse1_0.locked, - mse1_0.locked_by, - mse1_0.minutes_id, - mse1_0."order", - mse1_0.title, - mse1_0.type, - mse1_0.updated_at, - mse1_0.verified - from - minutes_sections mse1_0 - where - mse1_0.minutes_id=? - order by - mse1_0."order" -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.TodoService - Getting todos by minutes: minutes-draft-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - te1_0.todo_id, - te1_0.assignee_id, - te1_0.completed_at, - te1_0.created_at, - te1_0.description, - te1_0.due_date, - te1_0.meeting_id, - te1_0.minutes_id, - te1_0.priority, - te1_0.status, - te1_0.title, - te1_0.updated_at - from - todos te1_0 - where - te1_0.minutes_id=? -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG c.u.h.m.biz.service.MeetingService - Getting meeting: meeting-completed-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* */ select - mpe1_0.meeting_id, - mpe1_0.user_id, - mpe1_0.attended, - mpe1_0.created_at, - mpe1_0.invitation_status, - mpe1_0.updated_at - from - meeting_participants mpe1_0 - where - mpe1_0.meeting_id=? -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG c.u.h.m.b.s.MinutesSectionService - Getting sections by minutes: minutes-draft-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* SELECT - m - FROM - MinutesSectionEntity m - WHERE - m.minutesId = :minutesId - ORDER BY - m.order ASC */ select - mse1_0.section_id, - mse1_0.content, - mse1_0.created_at, - mse1_0.locked, - mse1_0.locked_by, - mse1_0.minutes_id, - mse1_0."order", - mse1_0.title, - mse1_0.type, - mse1_0.updated_at, - mse1_0.verified - from - minutes_sections mse1_0 - where - mse1_0.minutes_id=? - order by - mse1_0."order" -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.gateway.AiServiceGateway - AI 분석 결과 캐시 미스, AI 서비스 호출 - minutesId: minutes-draft-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] ERROR c.u.h.m.i.gateway.AiServiceGateway - AI 서비스 호출 실패 - minutesId: minutes-draft-1, error: I/O error on POST request for "http://ai:8080/api/v1/analysis/minutes": ai -org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://ai:8080/api/v1/analysis/minutes": ai - at org.springframework.web.client.RestTemplate.createResourceAccessException(RestTemplate.java:915) - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:895) - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:790) - at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:672) - at com.unicorn.hgzero.meeting.infra.gateway.AiServiceGateway.requestAiAnalysis(AiServiceGateway.java:107) - at com.unicorn.hgzero.meeting.infra.gateway.AiServiceGateway.getAiAnalysis(AiServiceGateway.java:51) - at com.unicorn.hgzero.meeting.infra.controller.MinutesController.enhanceWithAiAnalysis(MinutesController.java:1559) - at com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail(MinutesController.java:160) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MinutesController$$SpringCGLIB$$0.getMinutesDetail() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -Caused by: java.net.UnknownHostException: ai - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567) - at java.base/java.net.Socket.connect(Socket.java:751) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:282) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:386) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:408) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1320) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1253) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1139) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1068) - at org.springframework.http.client.SimpleClientHttpRequest.executeInternal(SimpleClientHttpRequest.java:79) - at org.springframework.http.client.AbstractStreamingClientHttpRequest.executeInternal(AbstractStreamingClientHttpRequest.java:70) - at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:66) - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:889) - ... 158 common frames omitted -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG c.u.h.m.b.s.MinutesSectionService - Getting sections by minutes: minutes-draft-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG org.hibernate.SQL - - /* SELECT - m - FROM - MinutesSectionEntity m - WHERE - m.minutesId = :minutesId - ORDER BY - m.order ASC */ select - mse1_0.section_id, - mse1_0.content, - mse1_0.created_at, - mse1_0.locked, - mse1_0.locked_by, - mse1_0.minutes_id, - mse1_0."order", - mse1_0.title, - mse1_0.type, - mse1_0.updated_at, - mse1_0.verified - from - minutes_sections mse1_0 - where - mse1_0.minutes_id=? - order by - mse1_0."order" -2025-10-28 11:06:19 [http-nio-8082-exec-4] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Creating and starting connection.","connectionId":"MF_7c4b65_1761617156934","hostName":"hgzero-eventhub-ns.servicebus.windows.net","port":5671} -2025-10-28 11:06:19 [http-nio-8082-exec-4] INFO c.a.c.a.i.ReactorExecutor - {"az.sdk.message":"Starting reactor.","connectionId":"MF_7c4b65_1761617156934"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionInit","connectionId":"MF_7c4b65_1761617156934","hostName":"hgzero-eventhub-ns.servicebus.windows.net","namespace":"hgzero-eventhub-ns.servicebus.windows.net"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.ReactorHandler - {"az.sdk.message":"reactor.onReactorInit","connectionId":"MF_7c4b65_1761617156934"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionLocalOpen","connectionId":"MF_7c4b65_1761617156934","errorCondition":null,"errorDescription":null,"hostName":"hgzero-eventhub-ns.servicebus.windows.net"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionBound","connectionId":"MF_7c4b65_1761617156934","hostName":"hgzero-eventhub-ns.servicebus.windows.net","peerDetails":"hgzero-eventhub-ns.servicebus.windows.net:5671"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.ConnectionHandler - {"az.sdk.message":"onConnectionRemoteOpen","connectionId":"MF_7c4b65_1761617156934","hostName":"hgzero-eventhub-ns.servicebus.windows.net","remoteContainer":"c13b07f3e7644de1a0f1a37cea90e787_G2"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.m.e.i.EventHubConnectionProcessor - {"az.sdk.message":"Channel is now active.","entityPath":"hgzero-eventhub-name"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteOpen","connectionId":"MF_7c4b65_1761617156934","sessionName":"hgzero-eventhub-name","sessionIncCapacity":0,"sessionOutgoingWindow":2147483647} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Setting CBS channel.","connectionId":"MF_7c4b65_1761617156934"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.SessionHandler - {"az.sdk.message":"onSessionRemoteOpen","connectionId":"MF_7c4b65_1761617156934","sessionName":"cbs-session","sessionIncCapacity":0,"sessionOutgoingWindow":2147483647} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.ReactorConnection - {"az.sdk.message":"Emitting new response channel.","connectionId":"MF_7c4b65_1761617156934","entityPath":"$cbs","linkName":"cbs"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Setting next AMQP channel.","connectionId":"MF_7c4b65_1761617156934","entityPath":"$cbs"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Next AMQP channel received.","connectionId":"MF_7c4b65_1761617156934","entityPath":"$cbs","subscriberId":"un_eb2b7a_1761617179636"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.SendLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_7c4b65_1761617156934","linkName":"cbs:sender","entityPath":"$cbs","remoteTarget":"Target{address='$cbs', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.AmqpChannelProcessor - {"az.sdk.message":"Channel is now active.","connectionId":"MF_7c4b65_1761617156934","entityPath":"$cbs"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.ReceiveLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_7c4b65_1761617156934","entityPath":"$cbs","linkName":"cbs:receiver","remoteSource":"Source{address='$cbs', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=null, outcomes=null, capabilities=null}"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.ActiveClientTokenManager - {"az.sdk.message":"Scheduling refresh token task.","scopes":"amqp://hgzero-eventhub-ns.servicebus.windows.net/hgzero-eventhub-name"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.ReactorSession - {"az.sdk.message":"Creating a new send link.","connectionId":"MF_7c4b65_1761617156934","linkName":"hgzero-eventhub-name","sessionName":"hgzero-eventhub-name"} -2025-10-28 11:06:19 [reactor-executor-1] INFO c.a.c.a.i.handler.SendLinkHandler - {"az.sdk.message":"onLinkRemoteOpen","connectionId":"MF_7c4b65_1761617156934","linkName":"hgzero-eventhub-name","entityPath":"hgzero-eventhub-name","remoteTarget":"Target{address='hgzero-eventhub-name', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}"} -2025-10-28 11:06:19 [http-nio-8082-exec-4] INFO c.u.h.m.i.e.p.EventHubPublisher - 이벤트 발행 완료: topic=ai-analysis, type=MINUTES_ANALYSIS_REQUEST, partitionKey=minutes-draft-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MinutesController - AI 분석 요청 이벤트 발행 완료 - minutesId: minutes-draft-1, eventId: analysis-minutes-draft-1-1761617179338 -2025-10-28 11:06:19 [http-nio-8082-exec-4] DEBUG c.u.h.m.i.c.MinutesController - AI 분석 요청 이벤트 발행 완료 - minutesId: minutes-draft-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] ERROR c.u.h.m.infra.cache.CacheService - 회의록 상세 캐시 저장 실패 - minutesId: minutes-draft-1 -org.springframework.data.redis.RedisSystemException: Error in execution - at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:52) - at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:50) - at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41) - at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:40) - at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:38) - at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:310) - at org.springframework.data.redis.connection.lettuce.LettuceConnection.await(LettuceConnection.java:1012) - at org.springframework.data.redis.connection.lettuce.LettuceConnection.lambda$doInvoke$3(LettuceConnection.java:447) - at org.springframework.data.redis.connection.lettuce.LettuceInvoker$Synchronizer.invoke(LettuceInvoker.java:673) - at org.springframework.data.redis.connection.lettuce.LettuceInvoker$DefaultSingleInvocationSpec.get(LettuceInvoker.java:589) - at org.springframework.data.redis.connection.lettuce.LettuceStringCommands.setEx(LettuceStringCommands.java:134) - at org.springframework.data.redis.connection.DefaultedRedisConnection.setEx(DefaultedRedisConnection.java:340) - at org.springframework.data.redis.core.DefaultValueOperations$8.potentiallyUsePsetEx(DefaultValueOperations.java:265) - at org.springframework.data.redis.core.DefaultValueOperations$8.doInRedis(DefaultValueOperations.java:258) - at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:411) - at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:378) - at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:97) - at org.springframework.data.redis.core.DefaultValueOperations.set(DefaultValueOperations.java:253) - at org.springframework.data.redis.core.ValueOperations.set(ValueOperations.java:75) - at com.unicorn.hgzero.meeting.infra.cache.CacheService.cacheMinutesDetail(CacheService.java:256) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logService(LoggingAspect.java:86) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.cache.CacheService$$SpringCGLIB$$0.cacheMinutesDetail() - at com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail(MinutesController.java:163) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:355) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at com.unicorn.hgzero.common.aop.LoggingAspect.logController(LoggingAspect.java:56) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.unicorn.hgzero.meeting.infra.controller.MinutesController$$SpringCGLIB$$0.getMinutesDetail() - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) - at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) - at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) - at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) - at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:131) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:85) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at com.unicorn.hgzero.meeting.infra.config.jwt.JwtAuthenticationFilter.doFilterInternal(JwtAuthenticationFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) - at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) - at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) - at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) - at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) - at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) - at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) - at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:362) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:278) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:113) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:1583) -Caused by: io.lettuce.core.RedisReadOnlyException: READONLY You can't write against a read only replica. - at io.lettuce.core.internal.ExceptionFactory.createExecutionException(ExceptionFactory.java:144) - at io.lettuce.core.internal.ExceptionFactory.createExecutionException(ExceptionFactory.java:116) - at io.lettuce.core.protocol.AsyncCommand.completeResult(AsyncCommand.java:120) - at io.lettuce.core.protocol.AsyncCommand.complete(AsyncCommand.java:111) - at io.lettuce.core.protocol.CommandWrapper.complete(CommandWrapper.java:63) - at io.lettuce.core.protocol.CommandHandler.complete(CommandHandler.java:745) - at io.lettuce.core.protocol.CommandHandler.decode(CommandHandler.java:680) - at io.lettuce.core.protocol.CommandHandler.channelRead(CommandHandler.java:597) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -2025-10-28 11:06:19 [http-nio-8082-exec-4] INFO c.u.h.m.i.c.MinutesController - 회의록 상세 조회 성공 - minutesId: minutes-draft-1 -2025-10-28 11:06:19 [http-nio-8082-exec-4] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] com.unicorn.hgzero.meeting.infra.controller.MinutesController.getMinutesDetail 완료 - 실행시간: 1099ms +2025-10-29 09:08:30 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager +2025-10-29 09:08:30 [main] INFO c.u.h.m.infra.config.WebSocketConfig - WebSocket 핸들러 등록 완료 - endpoint: /ws/minutes/{minutesId} +2025-10-29 09:08:30 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' +2025-10-29 09:08:30 [main] DEBUG o.s.s.web.DefaultSecurityFilterChain - Will secure any request with filters: DisableEncodeUrlFilter, WebAsyncManagerIntegrationFilter, SecurityContextHolderFilter, HeaderWriterFilter, CorsFilter, LogoutFilter, JwtAuthenticationFilter, RequestCacheAwareFilter, SecurityContextHolderAwareRequestFilter, AnonymousAuthenticationFilter, SessionManagementFilter, ExceptionTranslationFilter, AuthorizationFilter +2025-10-29 09:08:30 [main] WARN o.s.b.a.t.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) +2025-10-29 09:08:30 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8082 (http) with context path '/' +2025-10-29 09:08:30 [main] INFO c.u.h.meeting.MeetingApplication - Started MeetingApplication in 3.149 seconds (process running for 3.262) diff --git a/meeting/logs/meeting-service.log.2025-10-28.0.gz b/meeting/logs/meeting-service.log.2025-10-28.0.gz new file mode 100644 index 0000000..23050cb Binary files /dev/null and b/meeting/logs/meeting-service.log.2025-10-28.0.gz differ diff --git a/meeting/src/main/java/com/unicorn/hgzero/meeting/biz/service/EndMeetingService.java b/meeting/src/main/java/com/unicorn/hgzero/meeting/biz/service/EndMeetingService.java index 57e8a6f..bec4033 100644 --- a/meeting/src/main/java/com/unicorn/hgzero/meeting/biz/service/EndMeetingService.java +++ b/meeting/src/main/java/com/unicorn/hgzero/meeting/biz/service/EndMeetingService.java @@ -4,18 +4,19 @@ import com.unicorn.hgzero.meeting.biz.domain.MeetingAnalysis; import com.unicorn.hgzero.meeting.biz.dto.MeetingEndDTO; import com.unicorn.hgzero.meeting.biz.usecase.in.meeting.EndMeetingUseCase; import com.unicorn.hgzero.meeting.infra.client.AIServiceClient; -import com.unicorn.hgzero.meeting.infra.dto.ai.AgendaSummaryDTO; import com.unicorn.hgzero.meeting.infra.dto.ai.ConsolidateRequest; import com.unicorn.hgzero.meeting.infra.dto.ai.ConsolidateResponse; import com.unicorn.hgzero.meeting.infra.dto.ai.ExtractedTodoDTO; import com.unicorn.hgzero.meeting.infra.dto.ai.ParticipantMinutesDTO; -import com.unicorn.hgzero.meeting.infra.gateway.entity.AgendaSectionEntity; import com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingAnalysisEntity; import com.unicorn.hgzero.meeting.infra.gateway.entity.MeetingEntity; +import com.unicorn.hgzero.meeting.infra.gateway.entity.MinutesEntity; +import com.unicorn.hgzero.meeting.infra.gateway.entity.MinutesSectionEntity; import com.unicorn.hgzero.meeting.infra.gateway.entity.TodoEntity; -import com.unicorn.hgzero.meeting.infra.gateway.repository.AgendaSectionJpaRepository; import com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingAnalysisJpaRepository; import com.unicorn.hgzero.meeting.infra.gateway.repository.MeetingJpaRepository; +import com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesJpaRepository; +import com.unicorn.hgzero.meeting.infra.gateway.repository.MinutesSectionJpaRepository; import com.unicorn.hgzero.meeting.infra.gateway.repository.TodoJpaRepository; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -25,6 +26,7 @@ import org.springframework.transaction.annotation.Transactional; import java.time.Duration; import java.time.LocalDateTime; +import java.util.ArrayList; import java.util.List; import java.util.UUID; import java.util.stream.Collectors; @@ -39,7 +41,8 @@ import java.util.stream.Collectors; public class EndMeetingService implements EndMeetingUseCase { private final MeetingJpaRepository meetingRepository; - private final AgendaSectionJpaRepository agendaRepository; + private final MinutesJpaRepository minutesRepository; + private final MinutesSectionJpaRepository minutesSectionRepository; private final TodoJpaRepository todoRepository; private final MeetingAnalysisJpaRepository analysisRepository; private final AIServiceClient aiServiceClient; @@ -59,13 +62,26 @@ public class EndMeetingService implements EndMeetingUseCase { MeetingEntity meeting = meetingRepository.findById(meetingId) .orElseThrow(() -> new IllegalArgumentException("회의를 찾을 수 없습니다: " + meetingId)); - // 2. 안건 목록 조회 (실제로는 참석자별 메모 섹션) - List agendaSections = agendaRepository.findByMeetingIdOrderByAgendaNumberAsc(meetingId); + // 2. 참석자별 회의록 조회 (userId가 있는 회의록들) + List participantMinutesList = minutesRepository.findByMeetingIdAndUserIdIsNotNull(meetingId); - // 3. AI 통합 분석 요청 데이터 생성 - ConsolidateRequest request = createConsolidateRequest(meeting, agendaSections); + if (participantMinutesList.isEmpty()) { + throw new IllegalStateException("참석자 회의록이 없습니다: " + meetingId); + } - // 4. AI Service 호출 + // 3. 각 회의록의 sections 조회 및 통합 + List allMinutesSections = new ArrayList<>(); + for (MinutesEntity minutes : participantMinutesList) { + List sections = minutesSectionRepository.findByMinutesIdOrderByOrderAsc( + minutes.getMinutesId() + ); + allMinutesSections.addAll(sections); + } + + // 4. AI 통합 분석 요청 데이터 생성 + ConsolidateRequest request = createConsolidateRequest(meeting, allMinutesSections, participantMinutesList); + + // 5. AI Service 호출 ConsolidateResponse aiResponse = aiServiceClient.consolidateMinutes(request); // 5. AI 분석 결과 저장 @@ -74,25 +90,38 @@ public class EndMeetingService implements EndMeetingUseCase { // 6. Todo 생성 및 저장 List todos = createAndSaveTodos(meeting, aiResponse, analysis); - // 7. 회의 종료 처리 + // 6. 회의 종료 처리 meeting.end(); meetingRepository.save(meeting); - // 8. 응답 DTO 생성 - return createMeetingEndDTO(meeting, analysis, todos, agendaSections.size()); + // 7. 응답 DTO 생성 + return createMeetingEndDTO(meeting, analysis, todos, participantMinutesList.size()); } /** * AI 통합 분석 요청 데이터 생성 + * 참석자별 회의록의 섹션들을 참석자별로 그룹화하여 AI 요청 데이터 생성 */ - private ConsolidateRequest createConsolidateRequest(MeetingEntity meeting, List agendaSections) { - // 참석자별 회의록 변환 (AgendaSection → ParticipantMinutes) - List participantMinutes = agendaSections.stream() - .map(section -> ParticipantMinutesDTO.builder() - .userId(section.getMeetingId()) // 실제로는 participantId 필요 - .userName(section.getAgendaTitle()) // 실제로는 participantName 필요 - .content(section.getDiscussions() != null ? section.getDiscussions() : "") - .build()) + private ConsolidateRequest createConsolidateRequest( + MeetingEntity meeting, + List allMinutesSections, + List participantMinutesList) { + + // 참석자별 회의록을 ParticipantMinutesDTO로 변환 + List participantMinutes = participantMinutesList.stream() + .map(minutes -> { + // 해당 회의록의 섹션들만 필터링 + String content = allMinutesSections.stream() + .filter(section -> section.getMinutesId().equals(minutes.getMinutesId())) + .map(section -> section.getTitle() + "\n" + section.getContent()) + .collect(Collectors.joining("\n\n")); + + return ParticipantMinutesDTO.builder() + .userId(minutes.getUserId()) + .userName(minutes.getUserId()) // 실제로는 userName이 필요하지만 일단 userId 사용 + .content(content) + .build(); + }) .collect(Collectors.toList()); return ConsolidateRequest.builder() diff --git a/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/client/AIServiceClient.java b/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/client/AIServiceClient.java index b93983a..5e03d64 100644 --- a/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/client/AIServiceClient.java +++ b/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/client/AIServiceClient.java @@ -46,7 +46,7 @@ public class AIServiceClient { log.info("AI Service 호출 - 회의록 통합 요약: {}", request.getMeetingId()); try { - String url = aiServiceUrl + "/api/v1/transcripts/consolidate"; + String url = aiServiceUrl + "/api/transcripts/consolidate"; // HTTP 헤더 설정 HttpHeaders headers = new HttpHeaders(); diff --git a/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/gateway/entity/MinutesEntity.java b/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/gateway/entity/MinutesEntity.java index 737c865..219553a 100644 --- a/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/gateway/entity/MinutesEntity.java +++ b/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/gateway/entity/MinutesEntity.java @@ -37,10 +37,6 @@ public class MinutesEntity extends BaseTimeEntity { @Column(name = "title", length = 200, nullable = false) private String title; - @OneToMany(mappedBy = "minutes", cascade = CascadeType.ALL, orphanRemoval = true) - @Builder.Default - private List sections = new ArrayList<>(); - @Column(name = "status", length = 20, nullable = false) @Builder.Default private String status = "DRAFT"; @@ -64,9 +60,7 @@ public class MinutesEntity extends BaseTimeEntity { .meetingId(this.meetingId) .userId(this.userId) .title(this.title) - .sections(this.sections.stream() - .map(MinutesSectionEntity::toDomain) - .collect(Collectors.toList())) + .sections(List.of()) // sections는 별도 조회 필요 .status(this.status) .version(this.version) .createdBy(this.createdBy) @@ -83,11 +77,6 @@ public class MinutesEntity extends BaseTimeEntity { .meetingId(minutes.getMeetingId()) .userId(minutes.getUserId()) .title(minutes.getTitle()) - .sections(minutes.getSections() != null - ? minutes.getSections().stream() - .map(MinutesSectionEntity::fromDomain) - .collect(Collectors.toList()) - : new ArrayList<>()) .status(minutes.getStatus()) .version(minutes.getVersion()) .createdBy(minutes.getCreatedBy()) diff --git a/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/gateway/entity/MinutesSectionEntity.java b/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/gateway/entity/MinutesSectionEntity.java index 603eeba..00da90b 100644 --- a/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/gateway/entity/MinutesSectionEntity.java +++ b/meeting/src/main/java/com/unicorn/hgzero/meeting/infra/gateway/entity/MinutesSectionEntity.java @@ -10,6 +10,8 @@ import lombok.NoArgsConstructor; /** * 회의록 섹션 Entity + * 참석자가 작성한 메모를 안건별로 저장 + * AI 분석의 입력 데이터로 사용됨 */ @Entity @Table(name = "minutes_sections") @@ -20,43 +22,36 @@ import lombok.NoArgsConstructor; public class MinutesSectionEntity extends BaseTimeEntity { @Id - @Column(name = "section_id", length = 50) - private String sectionId; + @Column(name = "id", length = 50) + private String id; - @ManyToOne(fetch = FetchType.LAZY) - @JoinColumn(name = "minutes_id", nullable = false) - private MinutesEntity minutes; - - @Column(name = "minutes_id", insertable = false, updatable = false) + @Column(name = "minutes_id", nullable = false, length = 50) private String minutesId; - @Column(name = "type", length = 50, nullable = false) + @Column(name = "type", length = 50) private String type; - @Column(name = "title", length = 200, nullable = false) + @Column(name = "title", length = 200) private String title; @Column(name = "content", columnDefinition = "TEXT") private String content; - @Column(name = "\"order\"") - @Builder.Default - private Integer order = 0; + @Column(name = "order") + private Integer order; - @Column(name = "verified", nullable = false) - @Builder.Default - private Boolean verified = false; + @Column(name = "verified") + private Boolean verified; - @Column(name = "locked", nullable = false) - @Builder.Default - private Boolean locked = false; + @Column(name = "locked") + private Boolean locked; @Column(name = "locked_by", length = 50) private String lockedBy; public MinutesSection toDomain() { return MinutesSection.builder() - .sectionId(this.sectionId) + .sectionId(this.id) .minutesId(this.minutesId) .type(this.type) .title(this.title) @@ -70,7 +65,7 @@ public class MinutesSectionEntity extends BaseTimeEntity { public static MinutesSectionEntity fromDomain(MinutesSection section) { return MinutesSectionEntity.builder() - .sectionId(section.getSectionId()) + .id(section.getSectionId()) .minutesId(section.getMinutesId()) .type(section.getType()) .title(section.getTitle()) @@ -82,6 +77,10 @@ public class MinutesSectionEntity extends BaseTimeEntity { .build(); } + public void verify() { + this.verified = true; + } + public void lock(String userId) { this.locked = true; this.lockedBy = userId; @@ -91,8 +90,4 @@ public class MinutesSectionEntity extends BaseTimeEntity { this.locked = false; this.lockedBy = null; } - - public void verify() { - this.verified = true; - } } diff --git a/meeting/src/main/resources/application.yml b/meeting/src/main/resources/application.yml index d5ff5b8..1ea1f43 100644 --- a/meeting/src/main/resources/application.yml +++ b/meeting/src/main/resources/application.yml @@ -28,7 +28,7 @@ spring: use_sql_comments: true dialect: org.hibernate.dialect.PostgreSQLDialect hibernate: - ddl-auto: ${JPA_DDL_AUTO:update} + ddl-auto: ${JPA_DDL_AUTO:none} # Redis Configuration data: diff --git a/meeting/src/main/resources/db/migration/V6__recreate_minutes_sections_table.sql b/meeting/src/main/resources/db/migration/V6__recreate_minutes_sections_table.sql new file mode 100644 index 0000000..43c1fae --- /dev/null +++ b/meeting/src/main/resources/db/migration/V6__recreate_minutes_sections_table.sql @@ -0,0 +1,52 @@ +-- ======================================== +-- V5: minutes_sections 테이블 재생성 +-- ======================================== +-- 작성일: 2025-10-28 +-- 설명: minutes_sections 테이블을 Entity 구조에 맞게 재생성 + +-- 1. 기존 테이블이 있으면 삭제 +DROP TABLE IF EXISTS minutes_sections CASCADE; + +-- 2. Entity 구조에 맞는 테이블 생성 +CREATE TABLE minutes_sections ( + id VARCHAR(50) PRIMARY KEY, + minutes_id VARCHAR(50) NOT NULL, + type VARCHAR(50), + title VARCHAR(200), + content TEXT, + "order" INTEGER, + verified BOOLEAN DEFAULT FALSE, + locked BOOLEAN DEFAULT FALSE, + locked_by VARCHAR(50), + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT fk_minutes_sections_minutes + FOREIGN KEY (minutes_id) REFERENCES minutes(id) + ON DELETE CASCADE +); + +-- 3. 인덱스 생성 +CREATE INDEX idx_minutes_sections_minutes ON minutes_sections(minutes_id); +CREATE INDEX idx_minutes_sections_order ON minutes_sections(minutes_id, "order"); +CREATE INDEX idx_minutes_sections_type ON minutes_sections(type); +CREATE INDEX idx_minutes_sections_verified ON minutes_sections(verified); + +-- 4. 코멘트 추가 +COMMENT ON TABLE minutes_sections IS '참석자별 회의록 안건 섹션 - AI 통합 회의록 생성 입력 데이터'; +COMMENT ON COLUMN minutes_sections.id IS '섹션 고유 ID'; +COMMENT ON COLUMN minutes_sections.minutes_id IS '참석자별 회의록 ID (minutes.id 참조)'; +COMMENT ON COLUMN minutes_sections.type IS '섹션 타입 (AGENDA: 안건, DISCUSSION: 논의사항, DECISION: 결정사항 등)'; +COMMENT ON COLUMN minutes_sections.title IS '섹션 제목'; +COMMENT ON COLUMN minutes_sections.content IS '섹션 내용 (참석자가 작성한 메모)'; +COMMENT ON COLUMN minutes_sections."order" IS '섹션 순서'; +COMMENT ON COLUMN minutes_sections.verified IS '검증 완료 여부'; +COMMENT ON COLUMN minutes_sections.locked IS '편집 잠금 여부'; +COMMENT ON COLUMN minutes_sections.locked_by IS '잠금 설정한 사용자 ID'; + +-- 5. updated_at 자동 업데이트 트리거 +DROP TRIGGER IF EXISTS update_minutes_sections_updated_at ON minutes_sections; +CREATE TRIGGER update_minutes_sections_updated_at + BEFORE UPDATE ON minutes_sections + FOR EACH ROW + EXECUTE FUNCTION update_updated_at_column(); diff --git a/meeting/src/test/java/com/unicorn/hgzero/meeting/manual/InsertTestData.java b/meeting/src/test/java/com/unicorn/hgzero/meeting/manual/InsertTestData.java new file mode 100644 index 0000000..e286074 --- /dev/null +++ b/meeting/src/test/java/com/unicorn/hgzero/meeting/manual/InsertTestData.java @@ -0,0 +1,111 @@ +package com.unicorn.hgzero.meeting.manual; + +import org.springframework.boot.CommandLineRunner; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.annotation.Bean; +import org.springframework.jdbc.core.JdbcTemplate; + +/** + * 테스트 데이터 삽입 스크립트 + * 실행: ./gradlew :meeting:bootRun --args='--spring.profiles.active=test' + */ +@SpringBootApplication(scanBasePackages = "com.unicorn.hgzero.meeting") +public class InsertTestData { + + public static void main(String[] args) { + SpringApplication.run(InsertTestData.class, args); + } + + @Bean + public CommandLineRunner insertData(JdbcTemplate jdbcTemplate) { + return args -> { + System.out.println("===== 테스트 데이터 삽입 시작 ====="); + + // 1. 참석자 회의록 삽입 + insertParticipantMinutes(jdbcTemplate); + + // 2. 회의록 섹션 삽입 + insertMinutesSections(jdbcTemplate); + + // 3. 데이터 확인 + verifyData(jdbcTemplate); + + System.out.println("===== 테스트 데이터 삽입 완료 ====="); + }; + } + + private void insertParticipantMinutes(JdbcTemplate jdbc) { + System.out.println("참석자 회의록 삽입 중..."); + + String[] inserts = { + "INSERT INTO minutes (minutes_id, meeting_id, user_id, title, status, version, created_by, created_at, updated_at) " + + "VALUES ('minutes-user1', 'meeting-123', 'user-001', '참석자 홍길동 회의록', 'DRAFT', 1, 'user-001', NOW(), NOW()) " + + "ON CONFLICT (minutes_id) DO NOTHING", + + "INSERT INTO minutes (minutes_id, meeting_id, user_id, title, status, version, created_by, created_at, updated_at) " + + "VALUES ('minutes-user2', 'meeting-123', 'user-002', '참석자 김철수 회의록', 'DRAFT', 1, 'user-002', NOW(), NOW()) " + + "ON CONFLICT (minutes_id) DO NOTHING", + + "INSERT INTO minutes (minutes_id, meeting_id, user_id, title, status, version, created_by, created_at, updated_at) " + + "VALUES ('minutes-user3', 'meeting-123', 'user-003', '참석자 이영희 회의록', 'DRAFT', 1, 'user-003', NOW(), NOW()) " + + "ON CONFLICT (minutes_id) DO NOTHING" + }; + + for (String sql : inserts) { + jdbc.execute(sql); + } + + System.out.println("참석자 회의록 삽입 완료"); + } + + private void insertMinutesSections(JdbcTemplate jdbc) { + System.out.println("회의록 섹션 삽입 중..."); + + // 참석자 1 섹션 + insertSection(jdbc, "minutes-user1", 1, "프로젝트 목표 논의", + "고객사 요구사항이 명확하지 않아 추가 미팅 필요. 우선순위는 성능 개선으로 결정."); + insertSection(jdbc, "minutes-user1", 2, "기술 스택 검토", + "React와 Spring Boot로 진행하기로 결정. DB는 PostgreSQL 사용."); + + // 참석자 2 섹션 + insertSection(jdbc, "minutes-user2", 1, "프로젝트 목표 논의", + "성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정."); + insertSection(jdbc, "minutes-user2", 2, "기술 스택 검토", + "캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용."); + + // 참석자 3 섹션 + insertSection(jdbc, "minutes-user3", 1, "프로젝트 목표 논의", + "고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요."); + insertSection(jdbc, "minutes-user3", 2, "기술 스택 검토", + "UI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토."); + + System.out.println("회의록 섹션 삽입 완료"); + } + + private void insertSection(JdbcTemplate jdbc, String minutesId, int sectionNum, String title, String content) { + String sql = "INSERT INTO minutes_sections (minutes_id, section_number, section_title, content, created_at) " + + "SELECT id, ?, ?, ?, NOW() FROM minutes WHERE minutes_id = ? " + + "ON CONFLICT DO NOTHING"; + + jdbc.update(sql, sectionNum, title, content, minutesId); + } + + private void verifyData(JdbcTemplate jdbc) { + System.out.println("\n===== 데이터 확인 ====="); + + Integer minutesCount = jdbc.queryForObject( + "SELECT COUNT(*) FROM minutes WHERE meeting_id = 'meeting-123' AND user_id IS NOT NULL", + Integer.class + ); + System.out.println("참석자 회의록 개수: " + minutesCount); + + Integer sectionsCount = jdbc.queryForObject( + "SELECT COUNT(*) FROM minutes_sections ms " + + "JOIN minutes m ON ms.minutes_id = m.id " + + "WHERE m.meeting_id = 'meeting-123'", + Integer.class + ); + System.out.println("회의록 섹션 개수: " + sectionsCount); + } +} diff --git a/meeting/src/test/resources/test-data-minutes-sections.sql b/meeting/src/test/resources/test-data-minutes-sections.sql new file mode 100644 index 0000000..33fdb79 --- /dev/null +++ b/meeting/src/test/resources/test-data-minutes-sections.sql @@ -0,0 +1,130 @@ +-- 테스트용 참석자 회의록(minutes) 데이터 +-- userId가 있는 회의록들 (참석자별 메모) + +-- 참석자 1의 회의록 +INSERT INTO minutes (minutes_id, meeting_id, user_id, title, status, version, created_by, created_at, updated_at) +VALUES ('minutes-user1', 'meeting-123', 'user-001', '참석자 홍길동 회의록', 'DRAFT', 1, 'user-001', NOW(), NOW()) +ON CONFLICT (minutes_id) DO NOTHING; + +-- 참석자 2의 회의록 +INSERT INTO minutes (minutes_id, meeting_id, user_id, title, status, version, created_by, created_at, updated_at) +VALUES ('minutes-user2', 'meeting-123', 'user-002', '참석자 김철수 회의록', 'DRAFT', 1, 'user-002', NOW(), NOW()) +ON CONFLICT (minutes_id) DO NOTHING; + +-- 참석자 3의 회의록 +INSERT INTO minutes (minutes_id, meeting_id, user_id, title, status, version, created_by, created_at, updated_at) +VALUES ('minutes-user3', 'meeting-123', 'user-003', '참석자 이영희 회의록', 'DRAFT', 1, 'user-003', NOW(), NOW()) +ON CONFLICT (minutes_id) DO NOTHING; + +-- minutes_sections 데이터 삽입 +-- Entity 구조에 맞게 수정: id, minutes_id, type, title, content, "order", verified, locked, locked_by + +-- 참석자 1 (홍길동)의 메모 +INSERT INTO minutes_sections (id, minutes_id, type, title, content, "order", verified, locked, locked_by, created_at, updated_at) +SELECT + 'section-user1-1', + 'minutes-user1', + 'AGENDA', + '프로젝트 목표 논의', + '고객사 요구사항이 명확하지 않아 추가 미팅 필요. 우선순위는 성능 개선으로 결정.', + 1, + FALSE, + FALSE, + NULL, + NOW(), + NOW() +WHERE NOT EXISTS ( + SELECT 1 FROM minutes_sections WHERE id = 'section-user1-1' +); + +INSERT INTO minutes_sections (id, minutes_id, type, title, content, "order", verified, locked, locked_by, created_at, updated_at) +SELECT + 'section-user1-2', + 'minutes-user1', + 'AGENDA', + '기술 스택 검토', + 'React와 Spring Boot로 진행하기로 결정. DB는 PostgreSQL 사용.', + 2, + FALSE, + FALSE, + NULL, + NOW(), + NOW() +WHERE NOT EXISTS ( + SELECT 1 FROM minutes_sections WHERE id = 'section-user1-2' +); + +-- 참석자 2 (김철수)의 메모 +INSERT INTO minutes_sections (id, minutes_id, type, title, content, "order", verified, locked, locked_by, created_at, updated_at) +SELECT + 'section-user2-1', + 'minutes-user2', + 'AGENDA', + '프로젝트 목표 논의', + '성능 개선이 가장 중요. 응답시간 목표는 200ms 이내로 설정.', + 1, + FALSE, + FALSE, + NULL, + NOW(), + NOW() +WHERE NOT EXISTS ( + SELECT 1 FROM minutes_sections WHERE id = 'section-user2-1' +); + +INSERT INTO minutes_sections (id, minutes_id, type, title, content, "order", verified, locked, locked_by, created_at, updated_at) +SELECT + 'section-user2-2', + 'minutes-user2', + 'AGENDA', + '기술 스택 검토', + '캐시 전략으로 Redis 도입 검토 필요. 모니터링 도구는 Prometheus 사용.', + 2, + FALSE, + FALSE, + NULL, + NOW(), + NOW() +WHERE NOT EXISTS ( + SELECT 1 FROM minutes_sections WHERE id = 'section-user2-2' +); + +-- 참석자 3 (이영희)의 메모 +INSERT INTO minutes_sections (id, minutes_id, type, title, content, "order", verified, locked, locked_by, created_at, updated_at) +SELECT + 'section-user3-1', + 'minutes-user3', + 'AGENDA', + '프로젝트 목표 논의', + '고객사 담당자와 다음 주 화요일에 추가 미팅 예정. 요구사항 명세서 작성 필요.', + 1, + FALSE, + FALSE, + NULL, + NOW(), + NOW() +WHERE NOT EXISTS ( + SELECT 1 FROM minutes_sections WHERE id = 'section-user3-1' +); + +INSERT INTO minutes_sections (id, minutes_id, type, title, content, "order", verified, locked, locked_by, created_at, updated_at) +SELECT + 'section-user3-2', + 'minutes-user3', + 'AGENDA', + '기술 스택 검토', + 'UI 라이브러리는 Material-UI 사용. 백엔드는 MSA 아키텍처 검토.', + 2, + FALSE, + FALSE, + NULL, + NOW(), + NOW() +WHERE NOT EXISTS ( + SELECT 1 FROM minutes_sections WHERE id = 'section-user3-2' +); + +-- 확인 쿼리 +SELECT 'Test data inserted successfully!' as status; +SELECT COUNT(*) as minutes_count FROM minutes WHERE meeting_id = 'meeting-123'; +SELECT COUNT(*) as sections_count FROM minutes_sections; diff --git a/stt/logs/stt.log b/stt/logs/stt.log index 7491095..2858b09 100644 --- a/stt/logs/stt.log +++ b/stt/logs/stt.log @@ -1,1863 +1,208 @@ -2025-10-24 09:47:57 [Test worker] INFO c.u.h.s.c.RecordingControllerTest - Starting RecordingControllerTest using Java 21.0.8 with PID 29670 (started by adela in /Users/adela/home/workspace/recent/HGZero/stt) -2025-10-24 09:47:57 [Test worker] DEBUG c.u.h.s.c.RecordingControllerTest - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-24 09:47:57 [Test worker] INFO c.u.h.s.c.RecordingControllerTest - No active profile set, falling back to 1 default profile: "default" -2025-10-24 09:47:57 [Test worker] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-24 09:47:57 [Test worker] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-24 09:47:57 [Test worker] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 61 ms. Found 4 JPA repository interfaces. -2025-10-24 09:47:58 [Test worker] WARN o.s.w.c.s.GenericWebApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jpaSharedEM_entityManagerFactory': Cannot resolve reference to bean 'entityManagerFactory' while setting constructor argument -2025-10-24 09:47:58 [Test worker] INFO o.s.b.a.l.ConditionEvaluationReportLogger - - -Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled. -2025-10-24 09:47:58 [Test worker] ERROR o.s.b.d.LoggingFailureAnalysisReporter - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -A component required a bean named 'entityManagerFactory' that could not be found. - - -Action: - -Consider defining a bean named 'entityManagerFactory' in your configuration. - -2025-10-24 09:47:58 [Test worker] WARN o.s.test.context.TestContextManager - Caught exception while allowing TestExecutionListener [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener] to prepare test instance [com.unicorn.hgzero.stt.controller.RecordingControllerTest@33430fc] -java.lang.IllegalStateException: Failed to load ApplicationContext for [WebMergedContextConfiguration@6e090aaa testClass = com.unicorn.hgzero.stt.controller.RecordingControllerTest, locations = [], classes = [com.unicorn.hgzero.stt.SttApplication], contextInitializerClasses = [], activeProfiles = [], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTestContextBootstrapper=true"], contextCustomizers = [org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@1d0d6318, org.springframework.boot.test.autoconfigure.OverrideAutoConfigurationContextCustomizerFactory$DisableAutoConfigurationContextCustomizer@73ad7e90, org.springframework.boot.test.autoconfigure.actuate.observability.ObservabilityContextCustomizerFactory$DisableObservabilityContextCustomizer@1f, org.springframework.boot.test.autoconfigure.filter.TypeExcludeFiltersContextCustomizer@e9965feb, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@ed1f19a5, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizer@c1bd0be, [ImportsContextCustomizer@15d79b70 key = [org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration, org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration, org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration, org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration, org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration, org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration, org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration, org.springframework.boot.test.autoconfigure.web.reactive.WebTestClientAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration, org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.client.servlet.OAuth2ClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcSecurityConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebDriverAutoConfiguration, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration, org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration, org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration, org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration, org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@655f7ea, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@20a14b55, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@a2d968c8, org.springframework.boot.test.web.reactor.netty.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@7b8233cd, org.springframework.boot.test.context.SpringBootTestAnnotation@36a362bc], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:180) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.postProcessFields(MockitoTestExecutionListener.java:122) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.injectFields(MockitoTestExecutionListener.java:106) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.prepareTestInstance(MockitoTestExecutionListener.java:63) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jpaSharedEM_entityManagerFactory': Cannot resolve reference to bean 'entityManagerFactory' while setting constructor argument - at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:377) - at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:135) - at org.springframework.beans.factory.support.ConstructorResolver.resolveConstructorArguments(ConstructorResolver.java:682) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:509) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1355) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1185) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:971) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.test.context.SpringBootContextLoader.lambda$loadContext$3(SpringBootContextLoader.java:137) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:58) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:46) - at org.springframework.boot.SpringApplication.withHook(SpringApplication.java:1463) - at org.springframework.boot.test.context.SpringBootContextLoader$ContextLoaderHook.run(SpringBootContextLoader.java:553) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:137) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:108) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:225) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:152) - ... 85 common frames omitted -Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'entityManagerFactory' available - at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:895) - at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:300) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:365) - ... 111 common frames omitted -2025-10-24 09:47:58 [Test worker] WARN o.s.test.context.TestContextManager - Caught exception while allowing TestExecutionListener [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener] to prepare test instance [com.unicorn.hgzero.stt.controller.RecordingControllerTest@521a506c] -java.lang.IllegalStateException: ApplicationContext failure threshold (1) exceeded: skipping repeated attempt to load context for [WebMergedContextConfiguration@6e090aaa testClass = com.unicorn.hgzero.stt.controller.RecordingControllerTest, locations = [], classes = [com.unicorn.hgzero.stt.SttApplication], contextInitializerClasses = [], activeProfiles = [], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTestContextBootstrapper=true"], contextCustomizers = [org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@1d0d6318, org.springframework.boot.test.autoconfigure.OverrideAutoConfigurationContextCustomizerFactory$DisableAutoConfigurationContextCustomizer@73ad7e90, org.springframework.boot.test.autoconfigure.actuate.observability.ObservabilityContextCustomizerFactory$DisableObservabilityContextCustomizer@1f, org.springframework.boot.test.autoconfigure.filter.TypeExcludeFiltersContextCustomizer@e9965feb, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@ed1f19a5, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizer@c1bd0be, [ImportsContextCustomizer@15d79b70 key = [org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration, org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration, org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration, org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration, org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration, org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration, org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration, org.springframework.boot.test.autoconfigure.web.reactive.WebTestClientAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration, org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.client.servlet.OAuth2ClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcSecurityConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebDriverAutoConfiguration, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration, org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration, org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration, org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration, org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@655f7ea, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@20a14b55, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@a2d968c8, org.springframework.boot.test.web.reactor.netty.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@7b8233cd, org.springframework.boot.test.context.SpringBootTestAnnotation@36a362bc], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:145) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.postProcessFields(MockitoTestExecutionListener.java:122) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.injectFields(MockitoTestExecutionListener.java:106) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.prepareTestInstance(MockitoTestExecutionListener.java:63) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -2025-10-24 09:47:58 [Test worker] WARN o.s.test.context.TestContextManager - Caught exception while allowing TestExecutionListener [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener] to prepare test instance [com.unicorn.hgzero.stt.controller.RecordingControllerTest@579f3c8e] -java.lang.IllegalStateException: ApplicationContext failure threshold (1) exceeded: skipping repeated attempt to load context for [WebMergedContextConfiguration@6e090aaa testClass = com.unicorn.hgzero.stt.controller.RecordingControllerTest, locations = [], classes = [com.unicorn.hgzero.stt.SttApplication], contextInitializerClasses = [], activeProfiles = [], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTestContextBootstrapper=true"], contextCustomizers = [org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@1d0d6318, org.springframework.boot.test.autoconfigure.OverrideAutoConfigurationContextCustomizerFactory$DisableAutoConfigurationContextCustomizer@73ad7e90, org.springframework.boot.test.autoconfigure.actuate.observability.ObservabilityContextCustomizerFactory$DisableObservabilityContextCustomizer@1f, org.springframework.boot.test.autoconfigure.filter.TypeExcludeFiltersContextCustomizer@e9965feb, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@ed1f19a5, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizer@c1bd0be, [ImportsContextCustomizer@15d79b70 key = [org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration, org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration, org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration, org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration, org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration, org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration, org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration, org.springframework.boot.test.autoconfigure.web.reactive.WebTestClientAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration, org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.client.servlet.OAuth2ClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcSecurityConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebDriverAutoConfiguration, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration, org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration, org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration, org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration, org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@655f7ea, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@20a14b55, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@a2d968c8, org.springframework.boot.test.web.reactor.netty.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@7b8233cd, org.springframework.boot.test.context.SpringBootTestAnnotation@36a362bc], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:145) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.postProcessFields(MockitoTestExecutionListener.java:122) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.injectFields(MockitoTestExecutionListener.java:106) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.prepareTestInstance(MockitoTestExecutionListener.java:63) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -2025-10-24 09:47:58 [Test worker] WARN o.s.test.context.TestContextManager - Caught exception while allowing TestExecutionListener [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener] to prepare test instance [com.unicorn.hgzero.stt.controller.RecordingControllerTest@4e2824b1] -java.lang.IllegalStateException: ApplicationContext failure threshold (1) exceeded: skipping repeated attempt to load context for [WebMergedContextConfiguration@6e090aaa testClass = com.unicorn.hgzero.stt.controller.RecordingControllerTest, locations = [], classes = [com.unicorn.hgzero.stt.SttApplication], contextInitializerClasses = [], activeProfiles = [], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTestContextBootstrapper=true"], contextCustomizers = [org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@1d0d6318, org.springframework.boot.test.autoconfigure.OverrideAutoConfigurationContextCustomizerFactory$DisableAutoConfigurationContextCustomizer@73ad7e90, org.springframework.boot.test.autoconfigure.actuate.observability.ObservabilityContextCustomizerFactory$DisableObservabilityContextCustomizer@1f, org.springframework.boot.test.autoconfigure.filter.TypeExcludeFiltersContextCustomizer@e9965feb, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@ed1f19a5, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizer@c1bd0be, [ImportsContextCustomizer@15d79b70 key = [org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration, org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration, org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration, org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration, org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration, org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration, org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration, org.springframework.boot.test.autoconfigure.web.reactive.WebTestClientAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration, org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.client.servlet.OAuth2ClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcSecurityConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebDriverAutoConfiguration, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration, org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration, org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration, org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration, org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@655f7ea, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@20a14b55, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@a2d968c8, org.springframework.boot.test.web.reactor.netty.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@7b8233cd, org.springframework.boot.test.context.SpringBootTestAnnotation@36a362bc], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:145) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.postProcessFields(MockitoTestExecutionListener.java:122) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.injectFields(MockitoTestExecutionListener.java:106) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.prepareTestInstance(MockitoTestExecutionListener.java:63) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -2025-10-24 09:47:58 [Test worker] WARN o.s.test.context.TestContextManager - Caught exception while allowing TestExecutionListener [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener] to prepare test instance [com.unicorn.hgzero.stt.controller.RecordingControllerTest@7d18338b] -java.lang.IllegalStateException: ApplicationContext failure threshold (1) exceeded: skipping repeated attempt to load context for [WebMergedContextConfiguration@6e090aaa testClass = com.unicorn.hgzero.stt.controller.RecordingControllerTest, locations = [], classes = [com.unicorn.hgzero.stt.SttApplication], contextInitializerClasses = [], activeProfiles = [], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTestContextBootstrapper=true"], contextCustomizers = [org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@1d0d6318, org.springframework.boot.test.autoconfigure.OverrideAutoConfigurationContextCustomizerFactory$DisableAutoConfigurationContextCustomizer@73ad7e90, org.springframework.boot.test.autoconfigure.actuate.observability.ObservabilityContextCustomizerFactory$DisableObservabilityContextCustomizer@1f, org.springframework.boot.test.autoconfigure.filter.TypeExcludeFiltersContextCustomizer@e9965feb, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@ed1f19a5, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizer@c1bd0be, [ImportsContextCustomizer@15d79b70 key = [org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration, org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration, org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration, org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration, org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration, org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration, org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration, org.springframework.boot.test.autoconfigure.web.reactive.WebTestClientAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration, org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.client.servlet.OAuth2ClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcSecurityConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebDriverAutoConfiguration, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration, org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration, org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration, org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration, org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@655f7ea, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@20a14b55, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@a2d968c8, org.springframework.boot.test.web.reactor.netty.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@7b8233cd, org.springframework.boot.test.context.SpringBootTestAnnotation@36a362bc], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:145) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.postProcessFields(MockitoTestExecutionListener.java:122) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.injectFields(MockitoTestExecutionListener.java:106) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.prepareTestInstance(MockitoTestExecutionListener.java:63) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -2025-10-24 09:47:58 [Test worker] WARN o.s.test.context.TestContextManager - Caught exception while allowing TestExecutionListener [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener] to prepare test instance [com.unicorn.hgzero.stt.controller.RecordingControllerTest@30c8c6ab] -java.lang.IllegalStateException: ApplicationContext failure threshold (1) exceeded: skipping repeated attempt to load context for [WebMergedContextConfiguration@6e090aaa testClass = com.unicorn.hgzero.stt.controller.RecordingControllerTest, locations = [], classes = [com.unicorn.hgzero.stt.SttApplication], contextInitializerClasses = [], activeProfiles = [], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTestContextBootstrapper=true"], contextCustomizers = [org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@1d0d6318, org.springframework.boot.test.autoconfigure.OverrideAutoConfigurationContextCustomizerFactory$DisableAutoConfigurationContextCustomizer@73ad7e90, org.springframework.boot.test.autoconfigure.actuate.observability.ObservabilityContextCustomizerFactory$DisableObservabilityContextCustomizer@1f, org.springframework.boot.test.autoconfigure.filter.TypeExcludeFiltersContextCustomizer@e9965feb, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@ed1f19a5, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizer@c1bd0be, [ImportsContextCustomizer@15d79b70 key = [org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration, org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration, org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration, org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration, org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration, org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration, org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration, org.springframework.boot.test.autoconfigure.web.reactive.WebTestClientAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration, org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.client.servlet.OAuth2ClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcSecurityConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebClientAutoConfiguration, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcWebDriverAutoConfiguration, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration, org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration, org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration, org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration, org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration, org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration, org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@655f7ea, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@20a14b55, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@a2d968c8, org.springframework.boot.test.web.reactor.netty.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@7b8233cd, org.springframework.boot.test.context.SpringBootTestAnnotation@36a362bc], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:145) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.postProcessFields(MockitoTestExecutionListener.java:122) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.injectFields(MockitoTestExecutionListener.java:106) - at org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener.prepareTestInstance(MockitoTestExecutionListener.java:63) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -2025-10-24 09:47:58 [Test worker] INFO o.s.t.c.s.AnnotationConfigContextLoaderUtils - Could not detect default configuration classes for test class [com.unicorn.hgzero.stt.integration.SttApiIntegrationTest]: SttApiIntegrationTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. -2025-10-24 09:47:58 [Test worker] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Found @SpringBootConfiguration com.unicorn.hgzero.stt.SttApplication for test class com.unicorn.hgzero.stt.integration.SttApiIntegrationTest -2025-10-24 09:47:58 [Test worker] ERROR o.s.boot.SpringApplication - Application run failed -org.springframework.boot.context.config.InvalidConfigDataPropertyException: Property 'spring.profiles.active' imported from location 'class path resource [application-test.yml]' is invalid in a profile specific resource [origin: class path resource [application-test.yml] - 4:13] - at org.springframework.boot.context.config.InvalidConfigDataPropertyException.lambda$throwIfPropertyFound$1(InvalidConfigDataPropertyException.java:121) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at java.base/java.util.Collections$UnmodifiableCollection.forEach(Collections.java:1117) - at org.springframework.boot.context.config.InvalidConfigDataPropertyException.throwIfPropertyFound(InvalidConfigDataPropertyException.java:118) - at org.springframework.boot.context.config.ConfigDataEnvironment.checkForInvalidProperties(ConfigDataEnvironment.java:367) - at org.springframework.boot.context.config.ConfigDataEnvironment.applyToEnvironment(ConfigDataEnvironment.java:331) - at org.springframework.boot.context.config.ConfigDataEnvironment.processAndApply(ConfigDataEnvironment.java:238) - at org.springframework.boot.context.config.ConfigDataEnvironmentPostProcessor.postProcessEnvironment(ConfigDataEnvironmentPostProcessor.java:96) - at org.springframework.boot.context.config.ConfigDataEnvironmentPostProcessor.postProcessEnvironment(ConfigDataEnvironmentPostProcessor.java:89) - at org.springframework.boot.env.EnvironmentPostProcessorApplicationListener.onApplicationEnvironmentPreparedEvent(EnvironmentPostProcessorApplicationListener.java:109) - at org.springframework.boot.env.EnvironmentPostProcessorApplicationListener.onApplicationEvent(EnvironmentPostProcessorApplicationListener.java:94) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) - at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) - at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) - at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) - at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) - at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) - at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) - at org.springframework.boot.test.context.SpringBootContextLoader.lambda$loadContext$3(SpringBootContextLoader.java:137) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:58) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:46) - at org.springframework.boot.SpringApplication.withHook(SpringApplication.java:1463) - at org.springframework.boot.test.context.SpringBootContextLoader$ContextLoaderHook.run(SpringBootContextLoader.java:553) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:137) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:108) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:225) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:152) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:142) - at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:98) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -2025-10-24 09:47:58 [Test worker] WARN o.s.test.context.TestContextManager - Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener] to prepare test instance [com.unicorn.hgzero.stt.integration.SttApiIntegrationTest@2152fde5] -java.lang.IllegalStateException: Failed to load ApplicationContext for [WebMergedContextConfiguration@11bfd751 testClass = com.unicorn.hgzero.stt.integration.SttApiIntegrationTest, locations = [], classes = [com.unicorn.hgzero.stt.SttApplication], contextInitializerClasses = [], activeProfiles = ["test"], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true", "server.port=0"], contextCustomizers = [org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@1d0d6318, org.springframework.boot.test.autoconfigure.actuate.observability.ObservabilityContextCustomizerFactory$DisableObservabilityContextCustomizer@1f, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizer@c1bd0be, [ImportsContextCustomizer@29519337 key = [org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration, org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration, org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration, org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration, org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration, org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration, org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration, org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration, org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration, org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration, org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@655f7ea, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@20a14b55, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@6035b93b, org.springframework.boot.test.web.reactor.netty.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@7b8233cd, org.springframework.boot.test.context.SpringBootTestAnnotation@397a0c64], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:180) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:142) - at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:98) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -Caused by: org.springframework.boot.context.config.InvalidConfigDataPropertyException: Property 'spring.profiles.active' imported from location 'class path resource [application-test.yml]' is invalid in a profile specific resource [origin: class path resource [application-test.yml] - 4:13] - at org.springframework.boot.context.config.InvalidConfigDataPropertyException.lambda$throwIfPropertyFound$1(InvalidConfigDataPropertyException.java:121) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at java.base/java.util.Collections$UnmodifiableCollection.forEach(Collections.java:1117) - at org.springframework.boot.context.config.InvalidConfigDataPropertyException.throwIfPropertyFound(InvalidConfigDataPropertyException.java:118) - at org.springframework.boot.context.config.ConfigDataEnvironment.checkForInvalidProperties(ConfigDataEnvironment.java:367) - at org.springframework.boot.context.config.ConfigDataEnvironment.applyToEnvironment(ConfigDataEnvironment.java:331) - at org.springframework.boot.context.config.ConfigDataEnvironment.processAndApply(ConfigDataEnvironment.java:238) - at org.springframework.boot.context.config.ConfigDataEnvironmentPostProcessor.postProcessEnvironment(ConfigDataEnvironmentPostProcessor.java:96) - at org.springframework.boot.context.config.ConfigDataEnvironmentPostProcessor.postProcessEnvironment(ConfigDataEnvironmentPostProcessor.java:89) - at org.springframework.boot.env.EnvironmentPostProcessorApplicationListener.onApplicationEnvironmentPreparedEvent(EnvironmentPostProcessorApplicationListener.java:109) - at org.springframework.boot.env.EnvironmentPostProcessorApplicationListener.onApplicationEvent(EnvironmentPostProcessorApplicationListener.java:94) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) - at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) - at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) - at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) - at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) - at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) - at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) - at org.springframework.boot.test.context.SpringBootContextLoader.lambda$loadContext$3(SpringBootContextLoader.java:137) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:58) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:46) - at org.springframework.boot.SpringApplication.withHook(SpringApplication.java:1463) - at org.springframework.boot.test.context.SpringBootContextLoader$ContextLoaderHook.run(SpringBootContextLoader.java:553) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:137) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:108) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:225) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:152) - ... 84 common frames omitted -2025-10-24 09:47:58 [Test worker] WARN o.s.test.context.TestContextManager - Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener] to prepare test instance [com.unicorn.hgzero.stt.integration.SttApiIntegrationTest@32328dc4] -java.lang.IllegalStateException: ApplicationContext failure threshold (1) exceeded: skipping repeated attempt to load context for [WebMergedContextConfiguration@11bfd751 testClass = com.unicorn.hgzero.stt.integration.SttApiIntegrationTest, locations = [], classes = [com.unicorn.hgzero.stt.SttApplication], contextInitializerClasses = [], activeProfiles = ["test"], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true", "server.port=0"], contextCustomizers = [org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@1d0d6318, org.springframework.boot.test.autoconfigure.actuate.observability.ObservabilityContextCustomizerFactory$DisableObservabilityContextCustomizer@1f, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizer@c1bd0be, [ImportsContextCustomizer@29519337 key = [org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration, org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration, org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration, org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration, org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration, org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration, org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration, org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration, org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration, org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration, org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@655f7ea, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@20a14b55, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@6035b93b, org.springframework.boot.test.web.reactor.netty.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@7b8233cd, org.springframework.boot.test.context.SpringBootTestAnnotation@397a0c64], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:145) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:142) - at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:98) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -2025-10-24 09:47:58 [Test worker] WARN o.s.test.context.TestContextManager - Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener] to prepare test instance [com.unicorn.hgzero.stt.integration.SttApiIntegrationTest@21540255] -java.lang.IllegalStateException: ApplicationContext failure threshold (1) exceeded: skipping repeated attempt to load context for [WebMergedContextConfiguration@11bfd751 testClass = com.unicorn.hgzero.stt.integration.SttApiIntegrationTest, locations = [], classes = [com.unicorn.hgzero.stt.SttApplication], contextInitializerClasses = [], activeProfiles = ["test"], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true", "server.port=0"], contextCustomizers = [org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@1d0d6318, org.springframework.boot.test.autoconfigure.actuate.observability.ObservabilityContextCustomizerFactory$DisableObservabilityContextCustomizer@1f, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizer@c1bd0be, [ImportsContextCustomizer@29519337 key = [org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration, org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration, org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration, org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration, org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration, org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration, org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration, org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration, org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration, org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration, org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration, org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@655f7ea, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@20a14b55, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@6035b93b, org.springframework.boot.test.web.reactor.netty.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@7b8233cd, org.springframework.boot.test.context.SpringBootTestAnnotation@397a0c64], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:145) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:130) - at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListener.java:142) - at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance(DependencyInjectionTestExecutionListener.java:98) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:163) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$10(ClassBasedTestDescriptor.java:378) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:383) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$11(ClassBasedTestDescriptor.java:378) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) - at java.base/java.util.stream.StreamSpliterators$WrappingSpliterator.forEachRemaining(StreamSpliterators.java:310) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:735) - at java.base/java.util.stream.Streams$ConcatSpliterator.forEachRemaining(Streams.java:734) - at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:762) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:377) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$6(ClassBasedTestDescriptor.java:290) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:289) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$4(ClassBasedTestDescriptor.java:279) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$5(ClassBasedTestDescriptor.java:278) - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:31) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:106) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:105) - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:69) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$2(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:128) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:160) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:146) - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:144) - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:143) - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:100) - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) - at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:124) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:99) - at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:94) - at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:63) - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) - at java.base/java.lang.reflect.Method.invoke(Method.java:580) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36) - at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24) - at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33) - at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:92) - at jdk.proxy1/jdk.proxy1.$Proxy4.stop(Unknown Source) - at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:200) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:132) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:103) - at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:63) - at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:122) - at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:72) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69) - at worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74) -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.service.RecordingServiceImpl - 녹음 준비 시작 - meetingId: MEETING-001, sessionId: SESSION-001 -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.service.RecordingServiceImpl - 녹음 준비 완료 - recordingId: REC-20251024-870 -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.service.RecordingServiceImpl - 녹음 중지 - recordingId: REC-20250123-001, stoppedBy: user001 -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.service.RecordingServiceImpl - 녹음 중지 완료 - recordingId: REC-20250123-001, duration: 1800초 -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.service.RecordingServiceImpl - 녹음 준비 시작 - meetingId: MEETING-001, sessionId: SESSION-001 -2025-10-24 09:47:58 [Test worker] DEBUG c.u.h.s.service.RecordingServiceImpl - 녹음 정보 조회 - recordingId: REC-NOTFOUND-001 -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.service.RecordingServiceImpl - 녹음 시작 - recordingId: REC-20250123-001, startedBy: user001 -2025-10-24 09:47:58 [Test worker] DEBUG c.u.h.s.service.RecordingServiceImpl - 녹음 정보 조회 - recordingId: REC-20250123-001 -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.service.RecordingServiceImpl - 녹음 시작 - recordingId: REC-20250123-001, startedBy: user001 -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.service.RecordingServiceImpl - 녹음 시작 완료 - recordingId: REC-20250123-001 -2025-10-24 09:47:58 [Test worker] DEBUG c.u.h.s.s.TranscriptionServiceImpl - 변환 텍스트 조회 - recordingId: REC-20250123-001, includeSegments: true -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.s.TranscriptionServiceImpl - 실시간 음성 변환 처리 - recordingId: REC-20250123-001, timestamp: 1761266878455 -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.s.TranscriptionServiceImpl - 배치 음성 변환 시작 - recordingId: REC-20250123-001, fileSize: 18 -2025-10-24 09:47:58 [Test worker] INFO c.u.h.s.s.TranscriptionServiceImpl - 배치 음성 변환 작업 생성 완료 - jobId: JOB-20251024-646 -2025-10-24 09:47:58 [Test worker] DEBUG c.u.h.s.s.TranscriptionServiceImpl - 변환 텍스트 조회 - recordingId: REC-NOTFOUND-001, includeSegments: false -2025-10-24 09:47:58 [Test worker] DEBUG c.u.h.s.s.TranscriptionServiceImpl - 변환 텍스트 조회 - recordingId: REC-20250123-001, includeSegments: false -2025-10-24 10:01:07 [main] INFO c.unicorn.hgzero.stt.SttApplication - Starting SttApplication using Java 21.0.8 with PID 32822 (/Users/adela/home/workspace/recent/HGZero/stt/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/stt) -2025-10-24 10:01:07 [main] DEBUG c.unicorn.hgzero.stt.SttApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-24 10:01:07 [main] INFO c.unicorn.hgzero.stt.SttApplication - No active profile set, falling back to 1 default profile: "default" -2025-10-24 10:01:07 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-24 10:01:07 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-24 10:01:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 74 ms. Found 4 JPA repository interfaces. -2025-10-24 10:01:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-24 10:01:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-24 10:01:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.RecordingRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-24 10:01:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.SpeakerRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-24 10:01:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptSegmentRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-24 10:01:08 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptionRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-24 10:01:08 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 16 ms. Found 0 Redis repository interfaces. -2025-10-24 10:01:08 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8084 (http) -2025-10-24 10:01:08 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-24 10:01:08 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-24 10:01:08 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-24 10:01:08 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1082 ms -2025-10-24 10:01:08 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-24 10:01:08 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-24 10:01:08 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7438c3d5 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7438c3d5 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@7438c3d5 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@1fba3fd6 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@1fba3fd6 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3aab42d6 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3aab42d6 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@6badb08c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@6badb08c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@5939f047 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@5939f047 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@5939f047 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@17332039 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@17332039 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@17332039 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@776e7dfb -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@776e7dfb -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@71418a4a -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@67ecf7ed -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@67ecf7ed -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@69d021c1 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@6d5508a5 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@103bcc9f -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@103bcc9f -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@103bcc9f -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@106802ea -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@106802ea -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@106802ea -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@785ef70f -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@785ef70f -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@785ef70f -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3d8bd881 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@3d8bd881 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3d8bd881 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@731ab49b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@731ab49b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@731ab49b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@23358740 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@23358740 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@2cdcfaa6 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@2cdcfaa6 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@4ff0706c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@4ff0706c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@4ff0706c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@6968bb65 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@66682e8f -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@66682e8f -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2d2af12e -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@611587f7 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@611587f7 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@611587f7 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@4d0abb23 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@6ab1f85b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@10e8c7a2 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@5d8fd077 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@5d8fd077 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@4544ab46 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@4544ab46 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2052f095 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@76d1f6ea -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@55fe9c2f -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@3580134d -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2e19b30 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@7b7e4b20 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@5ac0bf84 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@5ac0bf84 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@6fefc5ea -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@6fefc5ea -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@6159fb3c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@6159fb3c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@37142579 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@37142579 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@264576e4 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@86bf90b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@5c13af01 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@5c13af01 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@4aba7617 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@47c5cbf2 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1031c1a0 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@519b0f00 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@519b0f00 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4888d1ea -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@217b0952 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@3fd9e01c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@3fd9e01c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@36330be8 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@36330be8 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@38ba8b45 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@38ba8b45 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@38ba8b45 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@41f23499 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@41f23499 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@41f23499 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@31dbf5bb -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@1f19d423 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@73958426 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@73958426 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@23933031 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@23933031 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@23933031 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@4d0b7fd5 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@1ce2029b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@43090195 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@43090195 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@7921a37d -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@7921a37d -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@7921a37d -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@6fc28e5b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@6fc28e5b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@6338afe2 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@6338afe2 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@68360fb9 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@68360fb9 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@1c787389 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@1c787389 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@67b3960b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@67b3960b -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@415262a0 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@19c1f6f4 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@4af84a76 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4af84a76 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@5b74902c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@4e4bfd9c -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@24954e82 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@5b1f5fcc -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@4a29fe2e -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@79135a38 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@77fceac6 -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@563c3aca -2025-10-24 10:01:08 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@53e166ad -2025-10-24 10:01:09 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-24 10:01:09 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-24 10:01:09 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@64fba3e6 -2025-10-24 10:01:09 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-24 10:01:09 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4fc2933e) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@3c9c91e3) -2025-10-24 10:01:09 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@746da54f) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@2f2d8770) -2025-10-24 10:01:09 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-24 10:01:09 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@3809f65d -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3809f65d -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@4af84a76` -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-24 10:01:09 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-24 10:01:09 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@64eb14da] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@25587290] -2025-10-24 10:01:09 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-24 10:01:09 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@64eb14da] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@2a4a95c4] -2025-10-24 10:01:09 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:03:40 [main] INFO c.unicorn.hgzero.stt.SttApplication - Starting SttApplication using Java 23.0.2 with PID 46775 (/Users/jominseo/HGZero/stt/build/classes/java/main started by jominseo in /Users/jominseo/HGZero/stt) +2025-10-29 09:03:40 [main] DEBUG c.unicorn.hgzero.stt.SttApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 +2025-10-29 09:03:40 [main] INFO c.unicorn.hgzero.stt.SttApplication - No active profile set, falling back to 1 default profile: "default" +2025-10-29 09:03:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2025-10-29 09:03:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2025-10-29 09:03:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 46 ms. Found 3 JPA repository interfaces. +2025-10-29 09:03:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2025-10-29 09:03:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2025-10-29 09:03:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.RecordingRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:03:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptSegmentRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:03:40 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptionRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository +2025-10-29 09:03:40 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2025-10-29 09:03:40 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8084 (http) +2025-10-29 09:03:40 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2025-10-29 09:03:40 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] +2025-10-29 09:03:40 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2025-10-29 09:03:40 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 790 ms +2025-10-29 09:03:41 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] +2025-10-29 09:03:41 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final +2025-10-29 09:03:41 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3412a3fd +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3412a3fd +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3412a3fd +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@36ecf9f6 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@36ecf9f6 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@104bc677 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@104bc677 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3bda1f0 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3bda1f0 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@2211e731 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@2211e731 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@2211e731 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@73e399cc +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@73e399cc +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@73e399cc +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@3dd591b9 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@3dd591b9 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@538905d2 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@7e8c58fd +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@7e8c58fd +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@11ce9319 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@780c0 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1b3bb287 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1b3bb287 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@1b3bb287 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@7ec5aad +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@7ec5aad +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@7ec5aad +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@625f5712 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@625f5712 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@625f5712 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@5e62ca19 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@5e62ca19 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@5e62ca19 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@188bf4d8 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@188bf4d8 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@188bf4d8 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@7dd7ec56 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@7dd7ec56 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@6528d339 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@6528d339 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@2dd2ff87 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@2dd2ff87 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@2dd2ff87 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@6a38e3d1 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@28cf179c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@28cf179c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@bdda8a7 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@3149409c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3149409c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@3149409c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@1c421b0f +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@4ce18cec +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2a9f8d47 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@51297528 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@51297528 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@5d3f8661 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@5d3f8661 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@1df9f7c6 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@4b5aa48b +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@51c008fd +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@70ed902a +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@22f80e36 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3c98981e +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@6dcee890 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@6dcee890 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@713e49c3 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@713e49c3 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@13d5606c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@13d5606c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@6bf54260 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@6bf54260 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7165bde6 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7165bde6 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@72168258 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4af84a76 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@b5ff70b +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@b5ff70b +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@5709e10b +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@114badf0 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@19e8fe55 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@6d7bb5cc +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@6d7bb5cc +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@756200d1 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@390a07a0 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@674e4c82 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@674e4c82 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@572b4072 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@572b4072 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@322ab6ce +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@322ab6ce +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@322ab6ce +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@5b74902c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@5b74902c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@5b74902c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@4e4bfd9c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@43ee1cf7 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@24954e82 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@24954e82 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@5b1f5fcc +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@5b1f5fcc +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@5b1f5fcc +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@4a29fe2e +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@79135a38 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@77fceac6 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@77fceac6 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@563c3aca +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@563c3aca +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@563c3aca +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@53e166ad +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@53e166ad +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@30c03473 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@30c03473 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@20fa5277 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@20fa5277 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@17a7d6c8 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@17a7d6c8 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@4f2b1e9f +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@4f2b1e9f +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@7ef9c8a5 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@c6244e7 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@4c164f81 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4c164f81 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@4aa517c3 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5f369fc6 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@75de7009 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@17a77a7e +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@7c840fe3 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@59014efe +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@5f5923ef +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7381d6f0 +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2f262474 +2025-10-29 09:03:41 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer +2025-10-29 09:03:41 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2025-10-29 09:03:41 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@af94b0b +2025-10-29 09:03:41 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2025-10-29 09:03:41 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) +2025-10-29 09:03:41 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@6f8fb906) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@728535c6) +2025-10-29 09:03:41 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@244f356) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@19855799) +2025-10-29 09:03:41 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) +2025-10-29 09:03:41 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@35277c6c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@35277c6c +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@4c164f81` +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:03:41 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) +2025-10-29 09:03:41 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@25a2c4dc] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@29d81c22] +2025-10-29 09:03:42 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) +2025-10-29 09:03:42 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@25a2c4dc] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@456beb8b] +2025-10-29 09:03:42 [main] DEBUG org.hibernate.SQL - alter table if exists transcript_segments alter column text set data type TEXT -2025-10-24 10:01:10 [main] DEBUG org.hibernate.SQL - +2025-10-29 09:03:42 [main] DEBUG org.hibernate.SQL - alter table if exists transcriptions alter column full_text set data type TEXT -2025-10-24 10:01:10 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@2a4a95c4] for TypeConfiguration -2025-10-24 10:01:10 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-24 10:01:10 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-24 10:01:10 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-24 10:01:10 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - +2025-10-29 09:03:42 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@456beb8b] for TypeConfiguration +2025-10-29 09:03:42 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' +2025-10-29 09:03:42 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. +2025-10-29 09:03:42 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2025-10-29 09:03:42 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - -Using generated security password: 863f5d25-8564-48fa-9c2a-02492a35f8b6 +Using generated security password: 190dae79-b098-4391-99ef-25e80ab5f071 This generated password is for development use only. Your security configuration must be updated before running your application in production. -2025-10-24 10:01:10 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-24 10:01:11 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-24 10:01:11 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-24 10:01:11 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8084 (http) with context path '/' -2025-10-24 10:01:11 [main] INFO c.unicorn.hgzero.stt.SttApplication - Started SttApplication in 4.283 seconds (process running for 4.444) -2025-10-24 10:01:23 [http-nio-8084-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-24 10:01:23 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-24 10:01:23 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms -2025-10-24 10:02:28 [main] INFO c.unicorn.hgzero.stt.SttApplication - Starting SttApplication using Java 21.0.8 with PID 33225 (/Users/adela/home/workspace/recent/HGZero/stt/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/stt) -2025-10-24 10:02:28 [main] DEBUG c.unicorn.hgzero.stt.SttApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-24 10:02:28 [main] INFO c.unicorn.hgzero.stt.SttApplication - The following 1 profile is active: "dev" -2025-10-24 10:02:28 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-24 10:02:28 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-24 10:02:28 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 71 ms. Found 4 JPA repository interfaces. -2025-10-24 10:02:29 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-24 10:02:29 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-24 10:02:29 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.RecordingRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-24 10:02:29 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.SpeakerRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-24 10:02:29 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptSegmentRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-24 10:02:29 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptionRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-24 10:02:29 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces. -2025-10-24 10:02:29 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8084 (http) -2025-10-24 10:02:29 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-24 10:02:29 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-24 10:02:29 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-24 10:02:29 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1082 ms -2025-10-24 10:02:29 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-24 10:02:29 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-24 10:02:29 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@6968bb65 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@6968bb65 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@6968bb65 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@66682e8f -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@66682e8f -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@2d2af12e -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@2d2af12e -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@611587f7 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@611587f7 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4d0abb23 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@4d0abb23 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@4d0abb23 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@6ab1f85b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@6ab1f85b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@6ab1f85b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@10e8c7a2 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@10e8c7a2 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@5d8fd077 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@4544ab46 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@4544ab46 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@2052f095 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@76d1f6ea -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@55fe9c2f -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@55fe9c2f -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@55fe9c2f -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3580134d -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@3580134d -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3580134d -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@2e19b30 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@2e19b30 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@2e19b30 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@7b7e4b20 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@7b7e4b20 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@7b7e4b20 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@5ac0bf84 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@5ac0bf84 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@5ac0bf84 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@6fefc5ea -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@6fefc5ea -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@6159fb3c -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@6159fb3c -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@37142579 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@264576e4 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@264576e4 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@86bf90b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@5c13af01 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@5c13af01 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@5c13af01 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@4aba7617 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@47c5cbf2 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@1031c1a0 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@519b0f00 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@519b0f00 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@4888d1ea -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@4888d1ea -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@217b0952 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3fd9e01c -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@36330be8 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@38ba8b45 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@41f23499 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@31dbf5bb -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@1f19d423 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@1f19d423 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@73958426 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@73958426 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@23933031 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@23933031 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@4d0b7fd5 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@4d0b7fd5 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@1ce2029b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@1ce2029b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@43090195 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7921a37d -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@6fc28e5b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@6fc28e5b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@6338afe2 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@68360fb9 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1c787389 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@67b3960b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@67b3960b -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@415262a0 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@19c1f6f4 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@46fa2a7e -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@46fa2a7e -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@3d02ff64 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@3d02ff64 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@6f17dd06 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@6f17dd06 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@6f17dd06 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@7977f046 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@7977f046 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@7977f046 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@6ec98ccc -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@441aa7ae -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@1534bdc6 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@1534bdc6 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@53079ae6 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@53079ae6 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@53079ae6 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@718ad3a6 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@603c2dee -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@50d666a2 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@50d666a2 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@3f6906f4 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@3f6906f4 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@3f6906f4 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@1859e55c -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@1859e55c -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@190bf8e4 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@190bf8e4 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7a8b7e11 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7a8b7e11 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@d229912 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@d229912 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@5a06eeef -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@5a06eeef -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@1c0cf193 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@3dd66ff5 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@563c3aca -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@563c3aca -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@1c459c28 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@6ffdbeef -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3d7314b3 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@d677be9 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@fefb66c -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@6d7556a8 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@48860139 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7e0883f3 -2025-10-24 10:02:29 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@ca60688 -2025-10-24 10:02:29 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-24 10:02:29 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-24 10:02:30 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@129aaac1 -2025-10-24 10:02:30 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-24 10:02:30 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@7aaf6bfd) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4a8bf1dc) -2025-10-24 10:02:30 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@61aa6300) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@7e2e0b8a) -2025-10-24 10:02:30 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-24 10:02:30 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@7698a3d9 -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@7698a3d9 -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@563c3aca` -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-24 10:02:30 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-24 10:02:30 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@31b67d61] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@2b66bf1c] -2025-10-24 10:02:30 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-24 10:02:30 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@31b67d61] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@63437af4] -2025-10-24 10:02:30 [main] DEBUG org.hibernate.SQL - - alter table if exists transcript_segments - alter column text set data type TEXT -2025-10-24 10:02:30 [main] DEBUG org.hibernate.SQL - - alter table if exists transcriptions - alter column full_text set data type TEXT -2025-10-24 10:02:30 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@63437af4] for TypeConfiguration -2025-10-24 10:02:30 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-24 10:02:30 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-24 10:02:31 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-24 10:02:31 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 065f291b-3876-4838-8865-c4f4967beff9 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-24 10:02:31 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-24 10:02:31 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-24 10:02:31 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-24 10:02:32 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8084 (http) with context path '/' -2025-10-24 10:02:32 [main] INFO c.unicorn.hgzero.stt.SttApplication - Started SttApplication in 4.044 seconds (process running for 4.209) -2025-10-24 10:03:05 [http-nio-8084-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-24 10:03:05 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-24 10:03:05 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 7 ms -2025-10-24 10:03:05 [http-nio-8084-exec-8] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@53333f04]] -2025-10-24 10:03:05 [http-nio-8084-exec-8] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-24 10:03:05 [http-nio-8084-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@758f4006], /v3/api-docs, ko_KR] -2025-10-24 10:03:06 [http-nio-8084-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 351 ms -2025-10-24 10:03:06 [http-nio-8084-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 361ms -2025-10-27 16:00:09 [main] INFO c.unicorn.hgzero.stt.SttApplication - Starting SttApplication using Java 21.0.8 with PID 80487 (/Users/adela/home/workspace/recent/HGZero/stt/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/stt) -2025-10-27 16:00:09 [main] DEBUG c.unicorn.hgzero.stt.SttApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 16:00:09 [main] INFO c.unicorn.hgzero.stt.SttApplication - The following 1 profile is active: "dev" -2025-10-27 16:00:09 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:00:09 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 16:00:10 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 3 JPA repository interfaces. -2025-10-27 16:00:10 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:00:10 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 16:00:10 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.RecordingRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:00:10 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptSegmentRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:00:10 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptionRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:00:10 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 Redis repository interfaces. -2025-10-27 16:00:10 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8084 (http) -2025-10-27 16:00:10 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 16:00:10 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 16:00:10 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 16:00:10 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1171 ms -2025-10-27 16:00:10 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 16:00:10 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 16:00:10 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7b7e4b20 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@7b7e4b20 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@7b7e4b20 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5ac0bf84 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5ac0bf84 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@6fefc5ea -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@6fefc5ea -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@6159fb3c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@6159fb3c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@37142579 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@37142579 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@37142579 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@264576e4 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@264576e4 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@86bf90b -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@5c13af01 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@5c13af01 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@4aba7617 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@47c5cbf2 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1031c1a0 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@1031c1a0 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@1031c1a0 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@519b0f00 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@519b0f00 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@519b0f00 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4888d1ea -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@4888d1ea -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@4888d1ea -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@217b0952 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@217b0952 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@217b0952 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@3fd9e01c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@3fd9e01c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@3fd9e01c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@36330be8 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@36330be8 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@38ba8b45 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@38ba8b45 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@41f23499 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@41f23499 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@41f23499 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@31dbf5bb -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@1f19d423 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@1f19d423 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@73958426 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@23933031 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@23933031 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@23933031 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@4d0b7fd5 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@1ce2029b -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@43090195 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@7921a37d -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@7921a37d -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@6fc28e5b -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@6fc28e5b -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@6338afe2 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@68360fb9 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@1c787389 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@67b3960b -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@415262a0 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@19c1f6f4 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@46fa2a7e -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@46fa2a7e -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@3d02ff64 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@3d02ff64 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@6f17dd06 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@6f17dd06 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@7977f046 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@7977f046 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@6ec98ccc -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@6ec98ccc -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@441aa7ae -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1534bdc6 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@53079ae6 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@53079ae6 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@718ad3a6 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@603c2dee -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@50d666a2 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@3f6906f4 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@3f6906f4 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1859e55c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@190bf8e4 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@7a8b7e11 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@7a8b7e11 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@d229912 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@d229912 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@5a06eeef -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@5a06eeef -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@5a06eeef -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@1c0cf193 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@1c0cf193 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@1c0cf193 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@3dd66ff5 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@24258b54 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@493968a9 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@493968a9 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@32428874 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@32428874 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@32428874 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3c65f00e -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@3412a3fd -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@36ecf9f6 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@36ecf9f6 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@104bc677 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@104bc677 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@104bc677 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@3bda1f0 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@3bda1f0 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2211e731 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2211e731 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@73e399cc -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@73e399cc -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@3dd591b9 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@3dd591b9 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@538905d2 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@538905d2 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@7e8c58fd -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@11ce9319 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@3d7314b3 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3d7314b3 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@70bc3a9c -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@771cbd13 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3d57fb9e -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@2c2e5e72 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3e489ac1 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@26888c31 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@24010875 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7a021f49 -2025-10-27 16:00:10 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@e60c5a -2025-10-27 16:00:11 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 16:00:11 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 16:00:11 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@2648aa1b -2025-10-27 16:00:11 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 16:00:11 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 16:00:11 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@556843a5) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@3c5044fa) -2025-10-27 16:00:11 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@3db5195) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@b386a17) -2025-10-27 16:00:11 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 16:00:11 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@6a2057e -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@6a2057e -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@3d7314b3` -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:00:11 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:00:11 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@17063c32] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@79c2bc34] -2025-10-27 16:00:11 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 16:00:11 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@17063c32] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@70d24586] -2025-10-27 16:00:11 [main] DEBUG org.hibernate.SQL - - alter table if exists transcript_segments - alter column text set data type TEXT -2025-10-27 16:00:11 [main] DEBUG org.hibernate.SQL - - alter table if exists transcriptions - alter column full_text set data type TEXT -2025-10-27 16:00:11 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@70d24586] for TypeConfiguration -2025-10-27 16:00:11 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:00:12 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 16:00:12 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 16:00:12 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: 21ec4503-f646-49e5-a226-269067813174 - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 16:00:12 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 16:00:12 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 16:00:12 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 16:00:13 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8084 (http) with context path '/' -2025-10-27 16:00:13 [main] INFO c.unicorn.hgzero.stt.SttApplication - Started SttApplication in 4.128 seconds (process running for 4.383) -2025-10-27 16:00:19 [http-nio-8084-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 16:00:19 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 16:00:19 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms -2025-10-27 16:00:19 [http-nio-8084-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@46b60ea2]] -2025-10-27 16:00:19 [http-nio-8084-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 16:00:19 [http-nio-8084-exec-8] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@653c6527], /v3/api-docs, ko_KR] -2025-10-27 16:00:19 [http-nio-8084-exec-8] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 220 ms -2025-10-27 16:00:19 [http-nio-8084-exec-8] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 230ms -2025-10-27 16:01:17 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:01:17 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@70d24586] for TypeConfiguration -2025-10-27 16:01:17 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@76efa4d2] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@70d24586] -2025-10-27 16:01:17 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 16:01:17 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. -2025-10-27 16:01:20 [main] INFO c.unicorn.hgzero.stt.SttApplication - Starting SttApplication using Java 21.0.8 with PID 80625 (/Users/adela/home/workspace/recent/HGZero/stt/build/classes/java/main started by adela in /Users/adela/home/workspace/recent/HGZero/stt) -2025-10-27 16:01:20 [main] DEBUG c.unicorn.hgzero.stt.SttApplication - Running with Spring Boot v3.3.5, Spring v6.1.14 -2025-10-27 16:01:20 [main] INFO c.unicorn.hgzero.stt.SttApplication - The following 1 profile is active: "dev" -2025-10-27 16:01:20 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:01:20 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2025-10-27 16:01:20 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 71 ms. Found 3 JPA repository interfaces. -2025-10-27 16:01:20 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode -2025-10-27 16:01:20 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2025-10-27 16:01:20 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.RecordingRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:01:20 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptSegmentRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:01:20 [main] INFO o.s.d.r.c.RepositoryConfigurationExtensionSupport - Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.unicorn.hgzero.stt.repository.jpa.TranscriptionRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository -2025-10-27 16:01:20 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 Redis repository interfaces. -2025-10-27 16:01:21 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8084 (http) -2025-10-27 16:01:21 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] -2025-10-27 16:01:21 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.31] -2025-10-27 16:01:21 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext -2025-10-27 16:01:21 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1135 ms -2025-10-27 16:01:21 [main] INFO o.h.jpa.internal.util.LogHelper - HHH000204: Processing PersistenceUnitInfo [name: default] -2025-10-27 16:01:21 [main] INFO org.hibernate.Version - HHH000412: Hibernate ORM core version 6.5.3.Final -2025-10-27 16:01:21 [main] INFO o.h.c.i.RegionFactoryInitiator - HHH000026: Second-level cache disabled -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@5ffd35dd -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@5ffd35dd -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@5ffd35dd -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@311a09b2 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@311a09b2 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@4cacccbf -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@4cacccbf -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@301d84f6 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@301d84f6 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6f80cf5 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6f80cf5 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@6f80cf5 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@674ed201 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@674ed201 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@674ed201 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@4dad2363 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@4dad2363 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@114b2414 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@57920d6c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@57920d6c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@465d1345 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@62cf86d6 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@2a6c751f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@2a6c751f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@2a6c751f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@6dd2e453 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@6dd2e453 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@6dd2e453 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@433b1597 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@433b1597 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@433b1597 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@5d5cd210 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@5d5cd210 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@5d5cd210 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@14d18029 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@14d18029 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@14d18029 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@6edb1e9c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@6edb1e9c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@75d7297d -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@75d7297d -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@4e20a985 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@4e20a985 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@4e20a985 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@56e8a8a0 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@6071631f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@6071631f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2ca132ad -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@6706da3d -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@6706da3d -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@6706da3d -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@7438c3d5 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@1fba3fd6 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@3aab42d6 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@6badb08c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@6badb08c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@5939f047 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@5939f047 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@17332039 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@776e7dfb -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@71418a4a -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@67ecf7ed -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@69d021c1 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@6d5508a5 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@103bcc9f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@103bcc9f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@106802ea -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@106802ea -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@785ef70f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@785ef70f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@3d8bd881 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@3d8bd881 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@731ab49b -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@731ab49b -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@23358740 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2cdcfaa6 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@4ff0706c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@4ff0706c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@6968bb65 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@66682e8f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2d2af12e -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@611587f7 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@611587f7 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4d0abb23 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6ab1f85b -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@10e8c7a2 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@10e8c7a2 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@5d8fd077 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@5d8fd077 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@4544ab46 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@4544ab46 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@4544ab46 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@2052f095 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@2052f095 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@2052f095 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@76d1f6ea -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@55fe9c2f -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@3580134d -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@3580134d -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@2e19b30 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@2e19b30 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@2e19b30 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@7b7e4b20 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@5ac0bf84 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@6fefc5ea -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@6fefc5ea -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@6159fb3c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@6159fb3c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@6159fb3c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@68f79b7c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@37142579 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@37142579 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@264576e4 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@264576e4 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@86bf90b -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@86bf90b -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@5c13af01 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@5c13af01 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4aba7617 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@47c5cbf2 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@6528d339 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@6528d339 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@1df9f7c6 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@4b5aa48b -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@70ed902a -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@22f80e36 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3c98981e -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@6dcee890 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@713e49c3 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@13d5606c -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@6bf54260 -2025-10-27 16:01:21 [main] INFO o.s.o.j.p.SpringPersistenceUnitInfo - No LoadTimeWeaver setup: ignoring JPA class transformer -2025-10-27 16:01:21 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... -2025-10-27 16:01:21 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@14e83c9d -2025-10-27 16:01:21 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. -2025-10-27 16:01:21 [main] WARN org.hibernate.orm.deprecation - HHH90000025: PostgreSQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default) -2025-10-27 16:01:21 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@697b48e4) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@137d04d8) -2025-10-27 16:01:21 [main] DEBUG o.h.t.d.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@25b8f9d2) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@2979c6ef) -2025-10-27 16:01:21 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT)) -2025-10-27 16:01:21 [main] DEBUG o.h.t.d.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@6c2be147 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@6c2be147 -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@6528d339` -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:01:21 [main] DEBUG o.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007) -2025-10-27 16:01:21 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@233789d9] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@7f31937b] -2025-10-27 16:01:22 [main] INFO o.h.e.t.j.p.i.JtaPlatformInitiator - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2025-10-27 16:01:22 [main] DEBUG o.h.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@233789d9] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@59da4992] -2025-10-27 16:01:22 [main] DEBUG org.hibernate.SQL - - alter table if exists transcript_segments - alter column text set data type TEXT -2025-10-27 16:01:22 [main] DEBUG org.hibernate.SQL - - alter table if exists transcriptions - alter column full_text set data type TEXT -2025-10-27 16:01:22 [main] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@59da4992] for TypeConfiguration -2025-10-27 16:01:22 [main] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Initialized JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:01:22 [main] INFO o.s.d.j.r.query.QueryEnhancerFactory - Hibernate is in classpath; If applicable, HQL parser will be used. -2025-10-27 16:01:23 [main] WARN o.s.b.a.o.j.JpaBaseConfiguration$JpaWebConfiguration - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2025-10-27 16:01:23 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration - - -Using generated security password: ae329d40-b647-418a-a2c4-14ec71494bca - -This generated password is for development use only. Your security configuration must be updated before running your application in production. - -2025-10-27 16:01:23 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager -2025-10-27 16:01:23 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library -2025-10-27 16:01:23 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' -2025-10-27 16:01:24 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8084 (http) with context path '/' -2025-10-27 16:01:24 [main] INFO c.unicorn.hgzero.stt.SttApplication - Started SttApplication in 4.248 seconds (process running for 4.403) -2025-10-27 16:01:24 [http-nio-8084-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' -2025-10-27 16:01:24 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' -2025-10-27 16:01:24 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms -2025-10-27 16:01:24 [http-nio-8084-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@4b6e7a35]] -2025-10-27 16:01:24 [http-nio-8084-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 16:01:24 [http-nio-8084-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@2130cc49], /v3/api-docs, ko_KR] -2025-10-27 16:01:24 [http-nio-8084-exec-9] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 212 ms -2025-10-27 16:01:24 [http-nio-8084-exec-9] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 220ms -2025-10-27 16:01:24 [http-nio-8084-exec-6] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@3eef6069]] -2025-10-27 16:01:24 [http-nio-8084-exec-6] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms -2025-10-27 16:01:24 [http-nio-8084-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@27a6912], /v3/api-docs, ko_KR] -2025-10-27 16:01:24 [http-nio-8084-exec-7] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 1ms -2025-10-27 16:01:34 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'default' -2025-10-27 16:01:34 [SpringApplicationShutdownHook] TRACE o.h.type.spi.TypeConfiguration$Scope - Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@59da4992] for TypeConfiguration -2025-10-27 16:01:34 [SpringApplicationShutdownHook] DEBUG o.h.type.spi.TypeConfiguration$Scope - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@52d919ef] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@59da4992] -2025-10-27 16:01:34 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... -2025-10-27 16:01:34 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2025-10-29 09:03:42 [main] INFO o.s.s.c.a.a.c.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager +2025-10-29 09:03:42 [main] ERROR i.n.r.d.DnsServerAddressStreamProviders - Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library +2025-10-29 09:03:42 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 3 endpoints beneath base path '/actuator' +2025-10-29 09:03:43 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8084 (http) with context path '/' +2025-10-29 09:03:43 [main] INFO c.unicorn.hgzero.stt.SttApplication - Started SttApplication in 3.351 seconds (process running for 3.473) +2025-10-29 09:03:55 [http-nio-8084-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2025-10-29 09:03:55 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2025-10-29 09:03:55 [http-nio-8084-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2025-10-29 09:03:55 [http-nio-8084-exec-3] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@31ba88f1]] +2025-10-29 09:03:55 [http-nio-8084-exec-3] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.ui.SwaggerConfigResource.openapiJson 완료 - 실행시간: 0ms +2025-10-29 09:03:55 [http-nio-8084-exec-5] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 호출 - 파라미터: [SecurityContextHolderAwareRequestWrapper[ org.springframework.security.web.header.HeaderWriterFilter$HeaderWriterRequest@36fd8444], /v3/api-docs, ko_KR] +2025-10-29 09:03:56 [http-nio-8084-exec-5] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 173 ms +2025-10-29 09:03:56 [http-nio-8084-exec-5] INFO c.u.hgzero.common.aop.LoggingAspect - [Controller] org.springdoc.webmvc.api.OpenApiWebMvcResource.openapiJson 완료 - 실행시간: 179ms diff --git a/stt/logs/stt.log.2025-10-27.0.gz b/stt/logs/stt.log.2025-10-27.0.gz new file mode 100644 index 0000000..378082b Binary files /dev/null and b/stt/logs/stt.log.2025-10-27.0.gz differ diff --git a/stt/logs/stt.log.2025-10-28.0.gz b/stt/logs/stt.log.2025-10-28.0.gz new file mode 100644 index 0000000..319c349 Binary files /dev/null and b/stt/logs/stt.log.2025-10-28.0.gz differ