You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With #79 solved, it seems a couple issues were unearthed.
After a while, since Python lacks tail-recursion due to a design decision by Guido himself, those consecutive calls to self.polling end up hitting the runtime's recursion depth limit, throwing a RecursionError in the process.
Of course, the bot becomes inoperant after this.
The text was updated successfully, but these errors were encountered:
With #79 solved, it seems a couple issues were unearthed.
After a while, since Python lacks tail-recursion due to a design decision by Guido himself, those consecutive calls to
self.polling
end up hitting the runtime's recursion depth limit, throwing aRecursionError
in the process.Of course, the bot becomes inoperant after this.
The text was updated successfully, but these errors were encountered: