Luke Valenta
Luke Valenta
I was able to work around this issue by not simultaneously specifying both `zone_id` and `workers_dev` when running `wrangler dev`. A configuration like this works: ``` name = "service_id" type...
I've found the bug where a drand node starts up in a 'bad' state and is unable to block for clients requesting a future randomness round! Fortunately, the `/health` endpoint...
Ah, that makes sense. Thanks for looking into it!
I've also noticed from testing on our internal drand network that the first time I query the `/health` endpoint for a node after it has started, it returns something like...
I license past and future contributions under the dual MIT/Apache-2.0 license, allowing licensees to choose either at their option. On Fri, May 8, 2020 at 10:48 AM Will wrote: >...
This project is not being actively maintained, but I'd be happy to review pull requests.
You can install the bolt command line tool following https://github.com/etcd-io/bbolt/tree/master#installing. The executable is `bbolt` and should end up in your go path.
Great question! They're not currently documented as being static, but I don't expect the IPs for `roughtime.cloudflare.com` to change for the foreseeable future. (They're the same set of IPs as...
We should be able to use [Delay](https://github.com/cloudflare/workers-rs/blob/a16090aa737be88b1d647a7be319c5159b728c61/worker/src/delay.rs#L25) instead of that `sleep` function, right? It was added here: https://github.com/cloudflare/workers-rs/commit/3c798759178da9dd6057a3766806555dc3a5e98e by @zebp.
It also took me a while to discover this feature--perhaps we can convert this ticket into a TODO to add better docs/examples for the Delay functionality. The added benefit of...