Skip Menu |

This queue is for tickets about the autovivification CPAN distribution.

Report information
The Basics
Id: 99458
Status: resolved
Priority: 0/
Queue: autovivification

People
Owner: Nobody in particular
Requestors: TOSHIOITO [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.13
Fixed in: 0.14



Subject: AnyEvent::Loop hangs if autovivification 0.13 is loaded
Loading AnyEvent::Loop (pure-Perl implementation of AnyEvent event loop) hangs if autovivification 0.13 is already loaded (see the attached test). This often causes problem because AnyEvent::Loop is usually loaded lazily when an AnyEvent method is called for the first time.
Subject: anyevent_loop.t
use strict; use warnings; use Test::More; { no autovivification; } use AnyEvent::Loop; use AnyEvent; pass("done"); done_testing;
BTW, autovivification 0.12 was fine. When I examined the problem by Devel::Trace, it was stuck after executing BEGIN clause in AnyEvent::Loop.
When I tested in Travis-CI, the problem existed in perl 5.14, 5.16, 5.18, 5.20. perl 5.10 and 5.12 were fine.
Thanks for your report. This has been fixed in version 0.14. Vincent