diff --git a/documents/업무/4월/1째주/0401.txt b/documents/업무/4월/1째주/0401.txt index 593a3f1..bb0ca9d 100644 --- a/documents/업무/4월/1째주/0401.txt +++ b/documents/업무/4월/1째주/0401.txt @@ -1,3 +1,24 @@ 현재 대화방 오픈 앱 상태가 blur, minimum 일 때 읽음 처리 하지 않기 이슈 77, 78, 79, 81, 84, 87, 83 처리 화상회의 변경 사항 적용 + +this.store.dispatch(increaseLoginFailCount({})); +this.store.dispatch(webLoginFailure({ error: 'Failed' })); +this.store.dispatch(initialLoginFailCount({})); + +if (this.maxRetryCount > this.retryCount) { + this.store.dispatch(logoutInitialize()); + setTimeout(() => { + // this.store.dispatch(webLogin(selfParam)); + this.router.navigateByUrl('/account/login'); + }, this.retryInterval); + + this.retryCount++; + console.log('retry', this.retryCount, this.maxRetryCount); + return of(webLoginFailure({ error })); +} else { + console.log( + 'retry End', + this.retryCount, + this.maxRetryCount + ); \ No newline at end of file diff --git a/documents/업무/4월/1째주/0402.txt b/documents/업무/4월/1째주/0402.txt new file mode 100644 index 0000000..fecf1df --- /dev/null +++ b/documents/업무/4월/1째주/0402.txt @@ -0,0 +1,2 @@ +웹소켓 disconnect 감지 + retry \ No newline at end of file