Skip Menu |

This queue is for tickets about the POE-Component-Client-opentick CPAN distribution.

Report information
The Basics
Id: 40523
Status: resolved
Worked: 5 min
Priority: 0/
Queue: POE-Component-Client-opentick

People
Owner: INFIDEL [...] cpan.org
Requestors: yikes2000 [...] yahoo.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.15
Fixed in: 0.20



Subject: Annoying Dumper() in Protocol.pm
Protocol.pm has a couple of print Dumper()'s that cause excessive debugging verbiage when a request is cancelled. --- Protocol.pm.orig 2008-10-30 01:30:41.000000000 -0700 +++ Protocol.pm 2008-10-30 00:51:16.000000000 -0700 @@ -585,7 +585,7 @@ O_DEBUG( "_cancel_commands( $req_id, $cmd_id ), cid=$cancel_id = $cancelled" ); - print Dumper $self->{requests}; + #print Dumper $self->{requests}; return( $cancelled ); } @@ -721,7 +721,7 @@ $cmd_id == OTConstant( 'OT_REQUEST_LIST_SYMBOLS' ) or $cmd_id == OTConstant( 'OT_REQUEST_LIST_SYMBOLS_EX' ) ) ) { - print Dumper $self->{requests}->{$req_id}; + #print Dumper $self->{requests}->{$req_id}; O_DEBUG( "pruning $req_id!" ); $self->_prune_request( $req_id ); }
Fixed in 0.20, available on CPAN now. Full Changelog: --------------- 0.20 Nov 23, 2008 BUG: I think I fixed the build errors on Solaris, Win32 and Darwin in one fell swoop. Silly caching network stacks. { BUG: RT #39733: Wrong $field_datatypes for OT_DATATYPE_OHLC, Record.pm BUG: RT #39734: Minor typo in documentation for Record.pm BUG: RT #40364: Broken get_status() when ot_status_changed, opentick.pm BUG: RT #40573: Annoying Dumper() in Protocol.pm } -- thanks, A.L.! FIX: t/13-Output.t would fail on 5.6.2 due to scalar refs; skipped. DOC: Added Frequently Asked Questions list based on email questions.