Skip Menu |

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

Report information
The Basics
Id: 38209
Status: new
Priority: 0/
Queue: Net-Amazon-MechanicalTurk

People
Owner: Nobody in particular
Requestors: michele.r.berg [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.0
Fixed in: (no value)



Subject: LoadHITs.pm calls a non-existant subroutine
Lines 341 and 345 both call a non-existent subroutine, formatDataStructure. This makes debugging quite difficult. Fix: use Data::Dumper; line 341 changed from formatDataStructure($mturk->request, 4) . "\n"; To: Dumper($mturk->request, 4) . "\n"; line 345 changed from: formatDataStructure($mturk->response->fullResult, 4) . "\n"; To: Dumper($mturk->response->fullResult, 4) . "\n";