We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This seems like associated with isomorphic-fetch v 3.x matthew-andrews/isomorphic-fetch#194
The text was updated successfully, but these errors were encountered:
Thanks, I'll try to figure this out tomorrow
Sorry, something went wrong.
Hey @pjain11 I tried recreating this in a node16 lambda on aws but it worked as expected
const { Redis } = require("@upstash/redis/with-fetch"); // v1.4.0 exports.handler = async (event, context) => { let response; try { const redis = Redis.fromEnv(); const set = await redis.set("node", '{"hello":"world"}'); const get = await redis.get("node"); response = { "statusCode": 200, "body": JSON.stringify({ set, get, }), }; } catch (err) { console.log(err); return err; } return response; };
Can you provide a small reproduction, so I can understand what's going on?
Closing this, please reopen if you encounter it again
chronark
No branches or pull requests
This seems like associated with isomorphic-fetch v 3.x matthew-andrews/isomorphic-fetch#194
The text was updated successfully, but these errors were encountered: