Skip Menu |

This queue is for tickets about the Net-AMQP CPAN distribution.

Report information
The Basics
Id: 94281
Status: open
Priority: 0/
Queue: Net-AMQP

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

Bug Information
Severity: (no value)
Broken in: 0.06
Fixed in: (no value)



Subject: Not able to pull messages from a federated queue
EV: error in callback (ignoring): No way to unpack field 'visit-count' type 'l' at /home/cop/perl5/perlbrew/perls/LOGGING/lib/site_perl/5.18.1/Net/AMQP/Common.pm line 265. This happens when using Message::Passing::Input::AMQP configured to pull messages from a federated queue.
On Fri Mar 28 10:29:29 2014, ABRAXXA wrote: Show quoted text
> EV: error in callback (ignoring): No way to unpack field 'visit-count' > type 'l' at > /home/cop/perl5/perlbrew/perls/LOGGING/lib/site_perl/5.18.1/Net/AMQP/Common.pm > line 265. > > This happens when using Message::Passing::Input::AMQP configured to > pull messages from a federated queue.
See RT86856 - https://rt.cpan.org/Ticket/Display.html?id=86856. I think adding the 'l' type, as per that ticket, should be enough to get this working?
Am Fr 29. Aug 2014, 19:01:18, TEAM schrieb: Show quoted text
> On Fri Mar 28 10:29:29 2014, ABRAXXA wrote:
> > EV: error in callback (ignoring): No way to unpack field 'visit- > > count' > > type 'l' at > > /home/cop/perl5/perlbrew/perls/LOGGING/lib/site_perl/5.18.1/Net/AMQP/Common.pm > > line 265. > > > > This happens when using Message::Passing::Input::AMQP configured to > > pull messages from a federated queue.
> > See RT86856 - https://rt.cpan.org/Ticket/Display.html?id=86856. I > think adding the 'l' type, as per that ticket, should be enough to get > this working?
Possible, did you try it?
I Had same problem: EV: error in callback (ignoring): No way to unpack field '123' type 'l' at /usr/share/perl5/Net/AMQP/Common.pm line 265. After add: l => \&unpack_long_long_integer, in line: 240 in file /usr/share/perl5/Net/AMQP/Common.pm my %_unpack_field_types = ( V => sub { undef }, S => \&unpack_long_string, I => \&unpack_long_integer, + l => \&unpack_long_long_integer, D => sub { my $input_ref = shift; my $exp = unpack_octet($input_ref); my $num = unpack_long_integer($input_ref); $num / 10.0 ** $exp; file "/usr/share/perl5/Net/AMQP/Common.pm", everything working good.
I have same problem and this bug is same as https://rt.cpan.org/Public/Bug/Display.html?id=86856 is possible to fixed? Or please give me co-maint and I it fix. thanks JaSei