Matt Yule-Bennett
Matt Yule-Bennett
I was surprised that hooks do not run on rollback, and kind of baffled that nobody seems to be asking for this. The canonical example of using hooks is to...
For anyone else coming across this -- The problem is that the image tag is not set in the default values, and [it falls back](https://github.com/estafette/estafette-gke-node-pool-shifter/blob/0efdd388c9b1e38a42d8d1b142c22de7e5fe3fac/helm/estafette-gke-node-pool-shifter/templates/_helpers.tpl#L65) to the _chart_ version (1.0)....
This seems like a bug in eventlet's `greendns` module. Which version of eventlet do you have installed?
There have been a bunch of changes to `greendns` in the last handful of releases. I would try rolling back through the versions and see if there is one which...
Continuing the discussion from https://github.com/nameko/nameko/issues/223 here. This seems like a small change that would bring about some benefit. It is a little esoteric, but the cost of supporting it is...
My thoughts: I’m fine with approach (2). I agree that a nice “default” and a slightly more involved alternative makes for a good API. I also favour supporting defaults on...
Timeouts are still viable and desired. I think both "client-side" and TTL-based timeouts would be valuable, and I like the interface that was proposed: ```python n.rpc.service.method.call(args=(), kwargs={'foo': 'bar'}, timeout=10, expire=10)...
You can do this with Nameko 3. In Nameko 3, config is a global helper, so you can do almost exactly what you have in that snippet: ``` python from...
Thanks for reporting this @scnerd. It sounds like we should catch the derserialization error and return an appropriate error. We probably missed this case because the default serialization option (json)...
`@remote_error('', '')` seems straightforward and nicely namespaced to me. This decorator could also be used for non-RPC request-response type entrypoints so I'm not sure the `rpc` package is the right...