Univention Bugzilla – Attachment 9999 Details for
Bug 49403
Traceback unix.py: AttributeError select.error.errno
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Untested patch
file_49403.txt (text/plain), 1.06 KB, created by
Philipp Hahn
on 2019-05-02 09:13:26 CEST
(
hide
)
Description:
Untested patch
Filename:
MIME Type:
Creator:
Philipp Hahn
Created:
2019-05-02 09:13:26 CEST
Size:
1.06 KB
patch
obsolete
>diff --git a/virtualization/univention-virtual-machine-manager-daemon/src/univention/uvmm/unix.py b/virtualization/univention-virtual-machine-manager-daemon/src/univention/uvmm/unix.py >index 7a027517b5..6d18eedb54 100644 >--- a/virtualization/univention-virtual-machine-manager-daemon/src/univention/uvmm/unix.py >+++ b/virtualization/univention-virtual-machine-manager-daemon/src/univention/uvmm/unix.py >@@ -202,7 +202,12 @@ def unix(options): > rlist, wlist, xlist = select.select(sockets.keys(), [], [], None) > for fd in rlist: > sockets[fd].handle_request() >- except (select.error, socket.error) as ex: >+ except select.error as ex: >+ if ex.args[0] == errno.EINTR: >+ continue >+ else: >+ raise >+ except socket.error as ex: > if ex.errno == errno.EINTR: > continue > else:
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 49403
: 9999