mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
Replace asyncio.gather with custom Crawler function
This commit is contained in:
@ -1,4 +1,3 @@
|
||||
import asyncio
|
||||
import re
|
||||
from pathlib import PurePath
|
||||
from typing import Any, Awaitable, Callable, Dict, Optional, Set, TypeVar, Union
|
||||
@ -215,7 +214,7 @@ class KitIliasWebCrawler(HttpCrawler):
|
||||
# this method without having spawned a single task. Due to this we do
|
||||
# not need to cancel anything or worry about this gather call or the forks
|
||||
# further up.
|
||||
await asyncio.gather(*tasks)
|
||||
await self.gather(tasks)
|
||||
|
||||
await impl()
|
||||
|
||||
@ -240,7 +239,7 @@ class KitIliasWebCrawler(HttpCrawler):
|
||||
# this method without having spawned a single task. Due to this we do
|
||||
# not need to cancel anything or worry about this gather call or the forks
|
||||
# further up.
|
||||
await asyncio.gather(*tasks)
|
||||
await self.gather(tasks)
|
||||
|
||||
await impl()
|
||||
|
||||
|
Reference in New Issue
Block a user