Vitali Lovich
Vitali Lovich
Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `@miniflare/[email protected]` for the project I'm working on. I noticed that I had done...
Might be related to using Sinon.JS but I'm noticing that if I store a Date object within a DO entry and then retrieving it, the retrieved date no longer satisfies...
If I install Sinon.JS fake timer as follows: ``` fakeClock = FakeTimers.install({ toFake: ['setImmediate'] }) fakeClock.setSystemTime(1643948235000) ``` the second request to a DO seems to hang. Since `setImmediate` is by...
I haven't actually tried this but I suspect Miniflare doesn't handle content-length correctly. When using a custom Request/Response body (e.g. TransformStream), the EW runtime strips this header. Only `FixedLengthStream` can...
In the following test case: ``` await storage.transaction((txn) => { void txn.put('some key', 'some value') console.warn(storage.get('some key')) }) console.warn(storage.get('some key')) ``` the gets don't read back the writes.
I have problems like: ``` Argument of type 'DurableObjectId' is not assignable to parameter of type 'import(".../node_modules/@miniflare/durable-objects/dist/src/index").DurableObjectId'. Type 'DurableObjectId' is missing the following properties from type 'DurableObjectId': #private, [kObjectName] ```...
When run via `wrangler dev`, the output is correct. When run on Miniflare 1, the very first request returns an empty list (subsequent requests are handled correctly). If you change...
### Expected Behavior The documentation should call out that the content-length header is ignored when constructing a custom response/request. To have it set correctly, the body must be an instance...
We're observing a very strange failure & trying to rule things out. Basically we have process A & process B. process B is forked from process C which itself is...