You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is old legacy code in the cloudfront provider that is using the (node-fetch) package that was phased out over 2 years a go.
We noticed it would break after removing bcrypt as a dependency for the application.
--Before--
constnodeFetch=require('node-fetch')
constresponse=awaitnodeFetch(signedURL)
--After--
constresponse=awaitfetch(signedURL)
We need to remove the require statement from the module & change the fetch reference in the code.
✅ Bug
The text was updated successfully, but these errors were encountered:
RobAndrewHurst
added
Bug
A genuine bug. There must be some form of error exception to work with.
Code
Issues related to the code structure and performance.
labels
Oct 31, 2024
There are other issues with the cloudfront module as commented in the PR. Should these be addressed in this PR or do you want to create a separate issue for the Error handling?
Description
There is old legacy code in the cloudfront provider that is using the (node-fetch) package that was phased out over 2 years a go.
We noticed it would break after removing bcrypt as a dependency for the application.
--Before--
--After--
We need to remove the require statement from the module & change the fetch reference in the code.
The text was updated successfully, but these errors were encountered: