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
t/proxy-with-stack-trace.t dies with Can't store REGEXP items at /home/dakkar/.cpanm/work/1692614279.19553/Log-Any-1.717/t/TestAdapters.pm line 30
Adding some debugging print/note/diag/Data::Dumper, I noticed that the last argument passed to TestAdapters::Structured:structured is a Log::Any::MessageWithStackTrace which contains a Devel::StackTrace which contains a regex in its ignore_package attribute
Old versions of Storable don't deal with regexes, so the test fails.
You could add a dependency on Storable 3.06 (the earliest version to support cloning regexes)
The text was updated successfully, but these errors were encountered:
t/proxy-with-stack-trace.t
dies withCan't store REGEXP items at /home/dakkar/.cpanm/work/1692614279.19553/Log-Any-1.717/t/TestAdapters.pm line 30
Adding some debugging print/note/diag/Data::Dumper, I noticed that the last argument passed to
TestAdapters::Structured:structured
is aLog::Any::MessageWithStackTrace
which contains aDevel::StackTrace
which contains a regex in itsignore_package
attributeOld versions of Storable don't deal with regexes, so the test fails.
You could add a dependency on Storable 3.06 (the earliest version to support cloning regexes)
The text was updated successfully, but these errors were encountered: