Alberto Galera

Results 6 issues of Alberto Galera

I am trying to receive all the requests to a single endpoint, in the end I ended up doing a hack .... but I find it very bad solution ```python...

What do you think of adding decorators to the methods? https://gist.github.com/kianxineki/81d81f5931691df83440f6103c33a600 ```python from japronto import Application app = Application() # GET decorator def get(url): def wrap_function(func): app.router.add_route(url, func, method='GET') return...

enhancement

If an exception is generated in the response this error appears and the request is blocked ```python from japronto import Application app = Application() def hello(request): request.Response(json=['invalid', 'json']) app.router.add_route(url, hello,...

bug

I'm trying to send the heartbeat because sometimes I close the connection, I've been doing some tests and does not seem to work. what am I doing wrong? Thx! root@sb1:~/work/RocketTM/examples#...

## Summary of Changes At times the application tries to use kill if it discovers a .pid (may be after a reboot) and the wall command, these two commands are...

the idea is to support the lumberjack protocol (https://github.com/elastic/logstash-forwarder/blob/master/PROTOCOL.md) to insert logs in a simple way, this protocol is the one used by logstash, which will allow to send logs...