diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-02 18:36:42 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-02 18:36:42 +0100 |
| commit | 814e2ca1d24b91364744f2564c37b2847313acbb (patch) | |
| tree | cc8226e36e4b0683808345a282ffd9c77daf46a6 | |
| parent | a547f80e220921be7b7c8c5068838cc278b630f5 (diff) | |
| download | compiler-814e2ca1d24b91364744f2564c37b2847313acbb.tar.gz compiler-814e2ca1d24b91364744f2564c37b2847313acbb.zip | |
reduce number of workers to 1 to workaround deadlock issues
| -rw-r--r-- | api.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ async def startup(): worker = Worker() await worker.connect(db_config, queue_db) await worker.setup() - await worker.start(4) + await worker.start(1) logging.basicConfig( |
