Error handling => this.client.send is not a function

Jaa-van·2023년 6월 1일
0
post-thumbnail

multer-s3 와 aws-sdk 를 이용해 사진을 s3 에 업로드 하는 기능을 구현하였는데 에러가 났다.

에러

this.client.send is not a function

이 에러는 multer-s3 와 aws-sdk 의 버전 호환성 문제로

multer-s3 는 3.xxx 버전을, aws-sdk 는 2.xxx 버전을 활용할 때 발생한다.

따라서 multer-s3 를 uninstall 하고 2.xxx 버전으로 받아주면 된다

해결

npm uninstall multer-s3

npm i multer-s3@^2 --save

이렇게 하니 바로 정상적으로 작동하는 것을 확인할 수 있었다.

참고

https://stackoverflow.com/questions/72431773/multers3-is-giving-this-client-send-is-not-a-function-error

0개의 댓글