mirror of
https://github.com/munki/munki.git
synced 2026-04-30 01:11:01 -05:00
Wait longer for a reponse from fdesetup so the client doesn't timeout too fast
This commit is contained in:
@@ -55,7 +55,7 @@ class AuthRestartClient(object):
|
||||
'''Send a request to authrestartd'''
|
||||
self.socket.send(writePlistToString(request))
|
||||
# use select so we don't hang indefinitely if authrestartd dies
|
||||
ready = select.select([self.socket.fileno()], [], [], 2)
|
||||
ready = select.select([self.socket.fileno()], [], [], 10)
|
||||
if ready[0]:
|
||||
reply = self.socket.recv(8192).decode("UTF-8")
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user