Jay Marcyes

Results 144 issues of Jay Marcyes

Body doesn't have the request id: ``` [I] Request 0c2f934a-f9f5-4ffd-ba6f-4735488587d0 header Accept-Encoding: gzip, deflate, br [D] BODY: {'foo': 1111} ``` ---- The request id could probably be shortened to the...

turns out response body is buried, an error is raised but the server returns a 200 because the headers are already sent before the body is encoded, so all the...

I'm wondering if we can merge Connection and Call together, so Connection would extend our base `call.Call`? The reason why I was thinking about this is because I added a...

so if you pass in `@param("", errmsg=...)` it would use that `errmsg` as the error string if param fails in some way, this would allow us to fine tune client...

In an effort to make initial configuration even easier, would it be possible to just load controllers using the current working directory? So if prefixes are set then use those,...

so you could do something like: $ endpoints generate modpath.Foo Bar and it will create a file at `$ENDPOINTS_PREFIX/modpath.py` and `$ENDPOINTS_PREFIX/__init__.py` with something like: ```python class Foo(Controller): def GET(self, *args,...

Currently, the `ControllerDecorator` handles things that are meant to be called before the wrapped function but it has no functionality for doing something after the function has been called with...

Controller has a great error handler: ```python def handle_error(self, e, **kwargs): ``` A couple questions: 1. Should `handle_error` return the body? With a change that if it returns `None` then...

Right now the uWSGI Connection doesn't surface timeouts, it would actually be great if the Application object had a timeout handler that has the connection send a ping instead of...

I could try to see if I could make this work: ```python callframe = sys._getframe(1) namespace = callframe.f_locals ``` via: [In Python, decorate two methods with the same name to...