Jens-Wolfhard Schicke-Uffmann
Jens-Wolfhard Schicke-Uffmann
It is a very good place to put it. Because it will report what the various instances _believe_ to be the case -- and this is what needs to be...
Do we win anything by the status age tracking, except that the timeouts would be `timeout` / `idle_timeout` larger? It adds another member variable to the connection objects which adds...
I personally don't care for disconnect on idle, it probably doesn't hurt, nor help much - I just implemented the logic for the already existing constructor parameters. However, I _do_...
Re 1.: It's about the other way around. We have a usual zookeeper-registered instance A. Then I do `lymph request` to connect to A and do some stuff. Afterwards the...
There are actually (at least) two `http.Request` objects around: ``` router.StdHandler("POST", "/std", func(w http.ResponseWriter, req *http.Request) { ctx := req.Context() fmt.Printf("%p %p\n", req, fdhttp.Request(ctx)) } ``` shows me ``` 0xc0000d8200...
> There is some good reason for this, being that middlewares can access this body multiple times. The request body is an io.Reader, so you can only read from it...
IMHO: 1. About the original issue (and for now): We don't do anything. If someone needs the body, please use `fdhttp.RequestBody(ctx)`. 2. About the API issue, I propose removing `fdhttp.Request(ctx)`...
It's a lot of fields, unfortunately (see for example https://github.com/temporalio/dashboards/pull/68/files ). The easiest way I know is to actually deploy the dashboard into a grafana, edit each panel in turn,...
The program executed UD2 (dedicated undefined instruction) and is now very dead. `Illegal instruction` is probably printed by the enclosing shell. (cf. https://github.com/Drahflow/Elymas/blob/1433018210b9bb420a51929700056228a141bbe2/compiler/elymasGlobal.ey#L1227 The assembly continues afterwards in case you...
``` % echo '"Oops" die' | strace -f ./optimized execve("./optimized", ["./optimized"], 0x7ffc99ed0888 /* 50 vars */) = 0 open("/proc/self/exe", O_RDONLY) = 3 mmap(0x600000000000, 17825792, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x11d000) = 0x600000000000...