mefyl
mefyl
The error exhibited here is not the same as the one I get locally, which is the erroneous behavior I want to exhibit. I'm not sure why (yet) ``` File...
It does now exhibit the incorrect behavior as expected.
Just reproduced with 18.03: ```$ docker network rm F1StressNetwork0 Error response from daemon: rpc error: code = FailedPrecondition desc = network qewym9htq0a36kxqq5kd5wh5t is in use by task ye75nfrjlmjmh20u3eyrqiza3 $ docker...
Hi @tarlano. Here's my suspicion from what I see: your replication factor might be 1, in which case every block only has one copy, and shutting down the node that...
Seconded, I just stumbled on this an came to the exact same conclusion.
Indeed a codepoint parser combined with `many` could parse arbitrary UTF-8 input, but then we'd lose the nice features we use `scan` for: we have a list of possible entries...
I would understand if you'd prefer to have it just below in `run` instead of `callback`, but it's truly needed at least there lest the http server will shut down...
You're right that it's because of the example's `on_error`; if we change that I suppose that as far as `run` goes, it's explicit enough for the user that exceptions must...
Sorry for the delay, I was successively off and swamped these past weeks. Agreed, `accept_fork`'s `on_error` will force you to somehow handle these exceptions, I was still tainted by the...
Thanks for you help, your solution does indeed work. I did see the documentation but was using ``, sorry about that. I think this could be done automatically though: my...