Beau Barker
Beau Barker
The connection pool isn't very useful in this library because there's no way to return a connection to the pool that I could see. `connection.close()` seems to reduce the poolsize...
Just spent an hour trying to solve this. The problem here was, it wasn't reading my webserver_config.py file, and that was failing silently, in `app.py`: ```python app.config.from_pyfile(webserver_config_path, silent=True) ``` Without...
I'm not using this repo, but adding this to the gunicorn command worked for me: ``` --access-logfile - ```
Above solution doesn't work for me. Also this solution ties the application code too closely to the deployment method. We shouldn't be referencing gunicorn/uvicorn in the code.
I’m happy using ports for this.
Yes, good idea. Can’t see any reason not to do this.
This has been asked before in the client library (https://github.com/explodinglabs/jsonrpcclient/issues/111). I still consider these libraries are implementations of the 2.0 spec. The 1.0 spec has been superceded since 2008 or...
Great idea @deptyped , go for it!
Just an idea - perhaps some parts of this library, such as the schema validation, could be moved into middleware layers, to give the user more control over which parts...