fix: tiptap 버전 충돌 해결 및 legacy-peer-deps 적용 #280

Merged
hyeonsu merged 2 commits from common/feat/dashboard-map into main 2025-12-11 16:32:35 +09:00
1 changed files with 0 additions and 9 deletions
Showing only changes of commit fcc709684b - Show all commits

View File

@ -153,15 +153,6 @@ class MySQLPoolWrapper implements ConnectionPoolWrapper {
`[${this.dbType.toUpperCase()}] 연결 반환 (${this.activeConnections}/${this.maxConnections})`
);
});
// 연결 오류 이벤트 처리
this.pool.on("error", (err) => {
logger.error(`[${this.dbType.toUpperCase()}] 연결 풀 오류:`, err);
// 연결이 닫힌 경우 플래그 설정
if (err.message.includes("closed state")) {
this.isPoolClosed = true;
}
});
}
async query(sql: string, params?: any[]): Promise<any> {