Remove stack depth warnings
- I was never able to trigger them
This commit is contained in:
parent
e9edf70d3a
commit
dc5a91f326
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user