This commit is contained in:
Jannes Höke 2015-12-31 15:03:40 +01:00
parent 29a4062945
commit 3e1cb08567
2 changed files with 13 additions and 7 deletions

View file

@ -182,10 +182,11 @@ class Dispatcher:
# Dispatch any errors
except TelegramError as te:
self.logger.warn("Error was raised while processing Update.")
self.logger.warn("Error was raised while processing "
"Update.")
self.dispatchError(update, te)
# All other errors should not stop the thread, so just print them
# All other errors should not stop the thread, just print them
except:
print_exc()
else:

View file

@ -105,9 +105,10 @@ class Updater:
dispatcher_thread = Thread(target=self.dispatcher.start,
name="dispatcher")
updater_thread = Thread(target=self._start_polling,
name="updater",
args=(poll_interval, timeout,
network_delay))
name="updater",
args=(poll_interval,
timeout,
network_delay))
# Start threads
dispatcher_thread.start()
@ -148,8 +149,12 @@ class Updater:
dispatcher_thread = Thread(target=self.dispatcher.start,
name="dispatcher")
updater_thread = Thread(target=self._start_webhook,
name="updater",
args=(listen, port, url_path, cert, key))
name="updater",
args=(listen,
port,
url_path,
cert,
key))
# Start threads
dispatcher_thread.start()