Eddy Ashton

Results 81 comments of Eddy Ashton

> I think automatically converting a simpler slash-separated path to the actual name of the KV table will greatly improve adoption of this new generic endpoint. For example, `GET /gov/kv/nodes`...

@thempp66 You can add a `-v` (`--verbose`) argument to `sandbox.sh`, and it will print the commands it runs (amongst other things). This will show all of the setup done by...

@wintersteiger I believe most of these are safe, and handled by the uv proxy smart pointer. For the `Timer`s for instance, there's a few derived instances constructed in `host/main.cpp`: ```...

After looking at this again, I think the use of `uv_work_t` in `ledger.h` is actually unsafe. The reading task, and the final callback on the main thread, could both happen...

> we currently don't have a way to yield execution from within the enclave I've thought about this a little more, and wonder if we can support this in a...

Summarising my recent thoughts on this: Closing all user TLS sessions during an election is a bad experience (dead connection with no explanation), and pessimistic (killing sessions which would not...

The repo currently contains 3 READMEs which claim the following dependencies: ``` ds/README.md # Data Structures This directory contains data structures and utilities used by the rest of the code....

Splitting the snapshot message into multiple chunks so that it never exceeds the maximum message size is the simpler solution from an implementation perspective, but still requires the enclave thread...

> @eddyashton @jumaffre So the daily passed with this change. Is it reasonable to assume this as an indicator to merge or am I missing something else? If the daily...

@plietar Thanks for speccing this out - this is a very sensible addition to the framework. I was wary of exposing a `Tx` directly, as this requires giving the test...