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
I did use Devel::Confess twice in my codebase and ended up dying with: Deep recursion on subroutine "Devel::Confess::_warn" at .../IO/All.pm line 148. The warn handler is being overridden twice, resulting in a goto to ourselves -- if the warn handler is to be kept, a != check needs to be done first!
The text was updated successfully, but these errors were encountered:
I did
use Devel::Confess
twice in my codebase and ended up dying with:Deep recursion on subroutine "Devel::Confess::_warn" at .../IO/All.pm line 148.
The warn handler is being overridden twice, resulting in a goto to ourselves -- if the warn handler is to be kept, a != check needs to be done first!The text was updated successfully, but these errors were encountered: