瀏覽代碼

Fix taskType typo silencing cancellation warnings

tags/v0.2.2
JustAnotherArchivist 4 年之前
父節點
當前提交
69984765b3
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      qwarc/__init__.py

+ 1
- 1
qwarc/__init__.py 查看文件

@@ -220,7 +220,7 @@ class QWARC:
except concurrent.futures.CancelledError as e:
# Got cancelled, nothing we can do about it, but let's log a warning if it's a process task
if isinstance(future, asyncio.Task):
if future.taskType == 'process_item':
if future.taskType == 'process':
logging.warning(f'Task for {future.itemType}:{future.itemValue} cancelled: {future!r}')
elif future.taskType == 'sleep':
self._sleepTasks.remove(future)


Loading…
取消
儲存