-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
feat: add middleware for APIs and Commands #281
Conversation
This change would remove that. Think it's a problem? |
Don't think so |
Reverted this and went the opposite direction. We require Node 18/web worker standard. As discussed, this aligns with Node 18 lambda, deno, cloudflare, bun. Can be polyfilled in edge cases. |
} else { | ||
headers = (response.headers as Record<string, string>) ?? {}; | ||
} | ||
response.headers.forEach((value, key) => (headers[key] = value)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
always using the Fetch Headers object to avoid worrying about providing sane logic around header names
@@ -43,7 +43,6 @@ const ssm = new SSMClient({}); | |||
// execute extensions logic | |||
|
|||
while (true) { | |||
console.log("next"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also deleted this :-)
No description provided.