We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f3758 commit d3c4614Copy full SHA for d3c4614
src/vws/vws.py
@@ -324,6 +324,9 @@ def wait_for_target_processed(
324
@timeout(
325
seconds=timeout_seconds,
326
timeout_exception=TargetProcessingTimeout,
327
+ # Without this, signals are used which Windows does not support.
328
+ # See https://github.com/pnpnpn/timeout-decorator/issues/45
329
+ use_signals=False,
330
)
331
def decorated() -> None:
332
self._wait_for_target_processed(
0 commit comments