Simon Cruanes

Results 407 comments of Simon Cruanes

It might be a subtle discrepancy somewhere between the actual path and the expected URL encoded one, for sure. If you pass `a/b/c` as a URL path, it won't match...

Again, are you trying with a full file path (containing `'/'`)? If so, you need to URL encode it first.

You mean URL decode? It'd be helpful to know what URL exactly is sent by `size` (I don't see any URL encoding there), which URL is received by tiny_httpd, and...

You can always print the path from your handler, to see if it's actually invoked and with what?

For the diff size, you could replace ```ocaml OpamMulticore.run_with_task_pool (fun task_pool -> … ``` with ```ocaml OpamMulticore.run_with_task_pool @@ fun task_pool -> … ``` which doesn't affect indentation.

dully noted. could we use dummy trace_id/span_id to avoid the option?

Thank you for the report. I reproduced locally, and I think that 2. is correct. It actually took me a little while to understand it because it seemed intuitive that...

> Does this mean that the main domain intentionally does not participate in computations, or that it is included in num_threads and Moonpool with only spawn (n-1) domains? Given the...

Yes, that's fair. I imagine it could be a global option that tells moonpool what size the main domain pool should be. If you want to go lower and only...