mirror of
git://slackware.nl/current.git
synced 2024-12-29 10:25:00 +01:00
646a5c1cbf
a/pkgtools-15.0-noarch-13.txz: Rebuilt. installpkg: default line length for --terselength is the number of columns. removepkg: added --terse mode. upgradepkg: default line length for --terselength is the number of columns. upgradepkg: accept -option in addition to --option. ap/vim-8.1.0026-x86_64-1.txz: Upgraded. d/bison-3.0.5-x86_64-1.txz: Upgraded. e/emacs-26.1-x86_64-1.txz: Upgraded. kde/kopete-4.14.3-x86_64-8.txz: Rebuilt. Recompiled against libidn-1.35. n/conntrack-tools-1.4.5-x86_64-1.txz: Upgraded. n/libnetfilter_conntrack-1.0.7-x86_64-1.txz: Upgraded. n/libnftnl-1.1.0-x86_64-1.txz: Upgraded. n/links-2.16-x86_64-2.txz: Rebuilt. Rebuilt to enable X driver for -g mode. n/lynx-2.8.9dev.19-x86_64-1.txz: Upgraded. n/nftables-0.8.5-x86_64-1.txz: Upgraded. n/p11-kit-0.23.11-x86_64-1.txz: Upgraded. n/ulogd-2.0.7-x86_64-1.txz: Upgraded. n/whois-5.3.1-x86_64-1.txz: Upgraded. xap/network-manager-applet-1.8.12-x86_64-1.txz: Upgraded. xap/vim-gvim-8.1.0026-x86_64-1.txz: Upgraded.
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
# https://github.com/nplanel/parallel-ssh/commit/ee379dc5c69e4e0f62f92fb48f9a9ce6af0b2ac4.patch
|
|
From ee379dc5c69e4e0f62f92fb48f9a9ce6af0b2ac4 Mon Sep 17 00:00:00 2001
|
|
From: Nicolas PLANEL <nplanel@gmail.com>
|
|
Date: Fri, 23 Oct 2015 01:20:25 +1100
|
|
Subject: [PATCH] fixup : wakeup_writefd must be non-blocking
|
|
|
|
wakeup_writefd should be non-blocking as signal.set_wakeup_fd()
|
|
API request it.
|
|
|
|
"ValueError: the fd 4 must be in non-blocking mode"
|
|
---
|
|
psshlib/manager.py | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/psshlib/manager.py b/psshlib/manager.py
|
|
index 7dbf4e3..db35e76 100644
|
|
--- a/psshlib/manager.py
|
|
+++ b/psshlib/manager.py
|
|
@@ -2,6 +2,7 @@
|
|
|
|
from errno import EINTR
|
|
import os
|
|
+import fcntl
|
|
import select
|
|
import signal
|
|
import sys
|
|
@@ -209,6 +210,7 @@ def __init__(self):
|
|
|
|
# Setup the wakeup file descriptor to avoid hanging on lost signals.
|
|
wakeup_readfd, wakeup_writefd = os.pipe()
|
|
+ fcntl.fcntl(wakeup_writefd, fcntl.F_SETFL, os.O_NONBLOCK)
|
|
self.register_read(wakeup_readfd, self.wakeup_handler)
|
|
# TODO: remove test when we stop supporting Python <2.5
|
|
if hasattr(signal, 'set_wakeup_fd'):
|
|
|