Joan Rieu
Joan Rieu
About the transactional DDL, I'm by no means an expert, so I would love to read more about that partial support you're talking about, as it directly impacts this topic....
> You should ensure that your createContext never fails. This is intended behavior [...] This does not seem to be documented in the pages about context, error handling, and authorization....
There is a very simple workaround for this issue. The websocket tRPC server supports request batching, and by using the WSClient instance that you provide to wsLink, you can actually...
Thanks for the feedback. I've tried reproducing locally and managed to get a handful of 502s but it's hard as it's a timing issue, more so than I thought. After...
Thanks for the feedback @aslushnikov ! That was the push I needed to send an MR documenting this behaviour. ;)
Having the same issue on MacOS with Astro extension v2.15.4. Any kind of file operation (new/renamed file or new/renamed exports) is not picked up unless I use "restart extension host"...
Note that the return type of the `process` method should be `boolean`, not `void`. > The return value of this method controls the lifetime of the AudioWorkletProcessor's associated AudioWorkletNode. See...
The definition of `registerProcessor` was missing as well. I'm using the following definitions: ```ts interface AudioWorkletProcessor { readonly port: MessagePort; process( inputs: Float32Array[][], outputs: Float32Array[][], parameters: Record ): boolean; }...