session-file-store 에러 메세지
[session-file-store] will retry, error on last attempt: Error: ENOENT: no such file or directory,
session-file-store
의 에러메세지다.
session.destroy
로 세션을 삭제한 상태에서
어떤 기능을 수행하기 위해 다시 해당 세션을 찾는 과정에서 출력된다.
에러 메세지가 여러번 출력되는게 신경쓰여서 해결 방법을 찾아봤다.
app.use
- session
미들웨어에서 다음코드가 있을 것이다.
store: new fileStore()
🙅♂️ 1번 방법
logFn을 빈 함수로 오버라이딩 한다.
store: new fileStore({ logFn: function () {} })
메세지 출력 함수를 비워버린다니.. 옳지 않은 방법 같다.
🙆♂️ 2번 방법
retries
의 값을 수정한다.
store: new fileStore({ retries: 1 })
재시도 기본값이 5번이니 원하는 값으로 수정하면 된다.
스택 오버플로우를 맹신하지 않는 것도 중요한 것 같다.
참고
https://app.bountysource.com/teams/session-file-store/issues?tracker_ids=6978652
https://stackoverflow.com/questions/31387999/nodejs-enoent-warning-messages-with-sessions
Author And Source
이 문제에 관하여(session-file-store 에러 메세지), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@c1typ0p/session-file-store-에러-메세지저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)