Marco Ellwanger
Marco Ellwanger
This also breaks aws-signature generation whenever the signature is calculated before the headers are finalized/altered.
``` class MyDateFormat extends Serializable with DateFormat { def parse(s: String) = try { Some(formatter.parse(s)) } catch { case e: ParseException => None } def format(d: Date) = formatter.format(d) def...
Is this still maintained? It's a great module but there doesn't seem much activity lately wrt outstanding PRs. We can keep developing on a fork but it would be nice...
Thanks for the comments! * Previously you could provide an Agent to override default configurations, such as not failing on self-signed certificates. Node's global fetch does not use the http/https...
There actually seems to be an option to modify the globalFetch Dispatcher: `globalThis[Symbol.for('undici.globalDispatcher.1')] = yourDispatcher;` Will verify this. You can just reject the reworked (according to your comments) PR at...
The above doesn't work, neither does setGlobalDispatcher, so we will still rely on our fork in the meantime. Note that you can also pass a dispatcher as init parameter to...
Specifying a custom fetch is tricky as the globalFetch does not use undici's exposed fetch method, so you have to do what node does and require the internal dependencies which...
Ok so this does work, still not really clean, but using this override plus ts-expect-error providing a custom fetch is sufficient. ``` function myFetch(input: RequestInfo) { // @ts-expect-error 'dispatcher does...
Is there anything we can do to re-run failed workflows? Thanks!
> Apologies; I dropped off reviewing this PR because it still had failing tests, and it seemed like there was still work to be done. @mellster2012 if we get all...