Skip to content

Commit d3c4614

Browse files
committed
Use an option which should allow windows support
1 parent 89f3758 commit d3c4614

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/vws/vws.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,9 @@ def wait_for_target_processed(
324324
@timeout(
325325
seconds=timeout_seconds,
326326
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,
327330
)
328331
def decorated() -> None:
329332
self._wait_for_target_processed(

0 commit comments

Comments
 (0)