From 800d518611154b6d50cf502e5ff53f5d712cb00b Mon Sep 17 00:00:00 2001 From: Park Byung Eun Date: Wed, 1 Apr 2020 22:25:13 +0900 Subject: [PATCH] dd --- documents/업무/4월/1째주/0401.txt | 21 +++++++++++++++++++++ documents/업무/4월/1째주/0402.txt | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 documents/업무/4월/1째주/0402.txt 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