We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbe899e commit 691014bCopy full SHA for 691014b
2 files changed
.github/workflows/ci.yml
@@ -46,6 +46,7 @@ jobs:
46
container:
47
# image: registry.opensuse.org/documentation/containers/15.6/opensuse-daps-toolchain:latest
48
image: ghcr.io/opensuse/doc-container:latest
49
+ options: --user 0:0
50
steps:
51
- name: Checkout repository
52
uses: actions/checkout@v6
src/docbuild/utils/concurrency.py
@@ -72,6 +72,7 @@ async def producer[T](
72
except (asyncio.QueueFull, Exception):
73
break
74
75
+
76
async def worker[T, R](
77
worker_fn: Callable[[T], Awaitable[R]],
78
input_queue: asyncio.Queue,
@@ -105,6 +106,7 @@ async def worker[T, R](
105
106
finally:
107
input_queue.task_done()
108
109
110
async def run_all[T, R](
111
items: Iterable[T] | AsyncIterableABC[T],
112
0 commit comments