Vitali Lovich

Results 180 comments of Vitali Lovich

It's not just happening to Date objects but I'll try.

Hmmm... this didn't seem like a gates/coalescing issue. Why is only the first put invisible to the next list but subsequent puts show up just fine? It's not actually a...

Adding onto this, you can probably use any S3 SDK (e.g. https://aws.amazon.com/sdk-for-net/). We don't yet have examples for C# libraries it looks like. https://docs.aws.amazon.com/sdk-for-net/v3/developer-guide/quick-start-s3-1-cross.html is probably a fine initial guide....

This should be merged after the validator has been updated.

Release isn't going out this week. The compat date will be pushed out.

I would recommend using sha512 in the example with a comment that it's faster than sha1 (it is). It's also faster than sha256 for longer messages but slightly slower/the same...

I assume forwarded requests/responses preserve the content-length. I assume a custom ReadableStream wrapping some custom underlying source doesn't work here & currently needs to be wrapped in FixedLengthStream. Probably a...

The same problem appears in `@miniflare/core`: ``` diff --git a/node_modules/@miniflare/core/dist/src/index.js b/node_modules/@miniflare/core/dist/src/index.js index 2909a6d..f4f25c9 100644 --- a/node_modules/@miniflare/core/dist/src/index.js +++ b/node_modules/@miniflare/core/dist/src/index.js @@ -529,8 +529,10 @@ var Body = class { } else if...

These are @jasnell questions (& FWIW the proposal I saw used `type: "bytes"` instead of mode for the TransformStream constructor.

Yeah, we handle `EINTR` for `epoll_wait` AFAICT (https://github.com/capnproto/capnproto/blob/master/c%2B%2B/src/kj/async-unix.c%2B%2B#L599). I concur that it's concerning & my personal prior is that it is a latent bug. However, I've been unsuccessful figuring out...