Remove stack depth warnings

- I was never able to trigger them
This commit is contained in:
Peter Šurda 2017-06-24 12:19:19 +02:00
parent e9edf70d3a
commit dc5a91f326
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
2 changed files with 10 additions and 11 deletions

View File

@ -41,14 +41,13 @@ class AdvancedDispatcher(asyncore.dispatcher):
if not self.connected:
return
maxLoop = 20
try:
sys._getframe(200)
logger.error("Stack depth warning")
except ValueError:
pass
# try:
# sys._getframe(200)
# logger.error("Stack depth warning")
# except ValueError:
# pass
while maxLoop > 0:
try:
# print "Trying to handle state \"%s\"" % (self.state)
if getattr(self, "state_" + str(self.state))() is False:
break
except AttributeError:

View File

@ -25,11 +25,11 @@ class ReceiveQueueThread(threading.Thread, StoppableThread):
while not self._stopped and state.shutdown == 0:
if lastprinted < int(time.time()):
lastprinted = int(time.time())
try:
sys._getframe(200)
logger.error("Stack depth warning")
except ValueError:
pass
# try:
# sys._getframe(200)
# logger.error("Stack depth warning")
# except ValueError:
# pass
processed = 0
for i in BMConnectionPool().inboundConnections.values() + BMConnectionPool().outboundConnections.values():
if self._stopped: