Sheena Artrip
Sheena Artrip
NOTE: self is busted. maybe it's `setattr(schema, "execute", partialmethod(schema.execute, executor=GeventExecutor))`? would something like this work or does the view itself have to be async? maybe it would work with gevent...
Yes. The only real different being that RecordRequest is different enough for concern (Name has slashes since it points to a nested file.. attempted to escape filename, format is ulaw...
@Ulexus : pushed up an offending test. Details are here: http://godoc.org/net/url#URL > Note that the Path field is stored in decoded form: /%47%6f%2f becomes /Go/. A consequence is that it...
A big thing is tracking when timeouts occur for #29
> errors.Cause always unwraps as far as it can, ie to the bottom of the stack, or at least until you hit an error which does not implement Cause. That's...
@danilobuerger My original post has a generalized but not optimal Recurse method for unwinding. I'm still wavering on a design, though, which wraps both this issue and key-value logging concerns.
Most important point: This is about errors.Cause working without any surprises. errors.Cause() returning nil when the input is non-nil **is a surprise**. Neither the code nor the documentation cover this....
@rushmorem The deps.nix file becomes empty in your process. `go2nix save` seems to ignore the 'vendor' folder when determining dependencies.
[]interface{} will NOT work... ,innerxml will be ignored the moment you start adding slices This is the ideal: ``` var msg xco.Message msg.Contents.Append(Body("My lord, dispatch; read o'er these articles.")); msg.Contents.Append(xep0184.RequestReceipt{});...
oh it works! https://play.golang.org/p/2afYrvYCf08 ``` package main import ( "encoding/xml" "os" ) type A struct { Contents interface{} `xml:",innerxml"` } type B struct { XMLName xml.Name `xml:"B"` } type C...