diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-02 18:34:14 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-02 18:34:14 +0100 |
| commit | 0af781413355c42850c2b7176112502d9cb4fde2 (patch) | |
| tree | 737d360235208caeaef64721bc4a8011842ea59b /api.py | |
| parent | 624d1d8b30d76f7ccd3498fefda3d5ec75653321 (diff) | |
| download | shrinker-0af781413355c42850c2b7176112502d9cb4fde2.tar.gz shrinker-0af781413355c42850c2b7176112502d9cb4fde2.zip | |
reduce number of workers to 1 to workaround deadlock issues
Diffstat (limited to 'api.py')
| -rw-r--r-- | api.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -180,7 +180,7 @@ async def startup(): source_db, dest_db ) await worker.setup() - await worker.start(4) + await worker.start(1) logging.basicConfig( filename=os.path.realpath( |
