Patrik Lundin
Patrik Lundin
Given the previous helpful debugging of @renatoram (thanks!) and no further input from other reporters I think we can close this as fixed by the mentioned PR. resolved_by_pr 6785
... with the change: ``` go run . http.Header{"Accept-Encoding":[]string{"gzip"}, "Content-Length":[]string{"17"}, "Content-Type":[]string{"application/json"}, "Digest":[]string{"id-sha256=k6I5cakU5erL8KjSUVTNownDwccvu5kU1Hxg88toFYg="}, "Signature":[]string{"sig1=:MEQCICLBWjGdG6uD+oOmi4ckEymseSh7T+FQgK0duF/ykISGAiAn1DSEtGQrPEMKqDBVacUSFkf/LLfA5JE1QiIFW/QgGQ==:"}, "Signature-Input":[]string{"sig1=(\"@method\" \"@path\" \"@query\" \"digest\" \"content-type\");created=1698098941;keyid=\"key1\";alg=\"ecdsa-p256-sha256\""}, "User-Agent":[]string{"Go-http-client/1.1"}} Hello, client: {"hello":"world"} ``` I can open a PR for this...
This is possibly fixed in https://github.com/kata-containers/kata-containers/pull/9899
I seem to be getting problems with nested structs, here is a contrived example: ``` package main import ( "fmt" "math" ) type nestedStruct struct { i *innerStruct } type...