Alberto Galera
Alberto Galera
I simply use version 0.13-dev. It would be nice to have a versioning of the development versions and be able to install them with pip without having to point a...
@josephernest as defnull comments, you can use different application servers, like uwsgi, gunicorn... where all this is already covered. https://uwsgi-docs.readthedocs.io/en/latest/Logging.html https://docs.gunicorn.org/en/stable/settings.html#logging just change your run() to: run(server='gunicorn', workers=4, quiet=True)
```python from japronto import Application app = Application() def route(url, *args, **kwargs): def wrap_function(func): app.router.add_route(url, func, *args, **kwargs) return fn return wrap_function # one method @route('/test1', method='GET') def test1(request): return...
@luizberti Yes, I think it's better if it's a GET by default. :+1:
It would be interesting to add plugins as does bottle, not to need multiple decorators, and also have control before and after each request. I give you an example of...
Is voluntary, a valid json is always a dict, here fails to make the conversion to json.
+1 for Gitter @JeffSpies I think there was a gateway to use gitter from an irc client
@wgwz slack: https://get.slack.help/hc/en-us/articles/201727913-Connect-to-Slack-over-IRC-and-XMPP gitter: https://github.com/WICG/admin/wiki/Connecting-to-Gitter-over-IRC
identical exception with eventlet, any ideas? amqp.exceptions.ConnectionForced: Too many heartbeats missed it seems I'm not reading the answer RabbitMQ not? "DEBUG:amqp:heartbeat_tick: sending heartbeat for connection 9ba9740dd54142399895c4d8f792b90b" Thanks for your help...
I used the "4.0-devel" branch and it seems the error persists. When I launch a task from the callback if the work lasts longer than 20 seconds, the heartbeat begins...