Re: Regression testing using LWP
Adi (adi@certsite.com)
Wed, 19 Apr 2000 13:39:16 -0400
It turned out to be a really stupid bug in my code. Sorry for bothering
everyone. Thanks for the help anyway Steve.
Steve Rasmussen wrote:
>
> Here's a line of code I just cut out of some LWP code, here:
>
> $ua->duplicates(0); # ignore dupe URLs, 0=yes
>
> It was preceeded by a very important statement:
>
> $ua = new LWP::Parallel::UserAgent;
>
> Anyway, it tells LWP to ignore duplicate calls to the
> same URL, which seems to be what you're seeing, I think.
>
> Hope that helps,
>
> Steve