Eli Mallon
Eli Mallon
Simple test case: ```javascript setTimeout(() => {}, 0) ``` This works in cloudworker but fails in CF workers, with this error: > Some functionality, such as asynchronous I/O, timeouts, and...
[Ajv, the JSON-Schema validator doesn't work on Cloudflare Workers.](https://github.com/epoberezkin/ajv). It relies on `eval()`'d code generation, and CF workers don't allow eval(). I was surprised to find that it worked perfectly...
Pay attention to the security note — I'm really not sure if there's a way to hack around this or not. But this at least makes us consistent with CF...
Running `npm install` seems to produce these changes locally on both macOS and Linux.
CloudFlare Workers don't implement a variety of fields in the `fetch` options dict. The ones I know about are `credentials`, `referrer`, `referrerPolicy`, and `mode`. Here's a minimal example: ```javascript addEventListener("fetch",...
I'm unclear on why we don't default to including the monitoring metrics. There's not much overhead associated with them and they're useful. I've never heard of another service where Prometheus...
``` docker run --rm -it livepeer/go-livepeer:v0.5.34 --version Livepeer Node Version: Golang runtime version: gc go1.17.6 Architecture: amd64 Operating system: linux ``` Would love to have a Livepeer Node Version there!
nginx-rtmp in its push mode doesn't play very nicely with joy4. I believe this to be because [joy4 signals its chunk size as 128mb](https://github.com/nareix/joy4/blob/master/format/rtmp/rtmp.go#L356), which exceeds the 10mb limit [hardcoded...
I'm running a PDS at `https://iame.li` and I want my handle to be `@iame.li`. There's presently a check in `com.atproto.identity.resolveHandle` that disallows any root domain in our `serviceHandleDomains` to be...
### Welcome - [X] Yes, I'm using a binary release within 2 latest major releases. Only such installations are supported. - [X] Yes, I've searched similar issues on GitHub and...