MongoError: Cannot use a session that has ended

종료된 세션을 사용 할수 없습니다.

 

출처 : https://stackoverflow.com/questions/59816298/how-to-fix-mongoerror-cannot-use-a-session-that-has-ended

원본코드

    } finally {
      await client.close();
    }

 

적용 후 

  } finally {
    //await client.close();
  }

Async로  close 함수가 먼저 실행되어 await를 붙여도 바로 실행 됨

'nodejs' 카테고리의 다른 글

DISCORD bot 제작  (0) 2021.10.22
nodejs so파일  (0) 2021.09.10
nodejs 버전 업데이트 하기  (0) 2021.07.15
nodemon 설정 방법  (0) 2020.12.09
axios 전송  (0) 2020.12.08
블로그 이미지

iesay

,