Decreased timeout time to 5 sec

This commit is contained in:
Jaime van Kessel 2016-07-27 13:10:57 +02:00
parent e584275f7a
commit ea022204ad

View file

@ -109,7 +109,7 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
self._connection_state_before_timeout = None self._connection_state_before_timeout = None
self._last_response_time = time() self._last_response_time = time()
self._timeout_time = 10 self._response_timeout_time = 5
def _onAuthenticationTimer(self): def _onAuthenticationTimer(self):
self._authentication_counter += 1 self._authentication_counter += 1
@ -186,7 +186,7 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
def _update(self): def _update(self):
# Check that we aren't in a timeout state # Check that we aren't in a timeout state
if self._last_response_time and not self._connection_state_before_timeout: if self._last_response_time and not self._connection_state_before_timeout:
if time() - self._last_response_time > self._timeout_time: if time() - self._last_response_time > self._response_timeout_time:
# Go into timeout state. # Go into timeout state.
Logger.log("d", "We did not recieve a response for %s seconds, so it seems the printer is no longer accesible.", time() - self._last_response_time) Logger.log("d", "We did not recieve a response for %s seconds, so it seems the printer is no longer accesible.", time() - self._last_response_time)
self._connection_state_before_timeout = self._connection_state self._connection_state_before_timeout = self._connection_state