Skip Menu |

This queue is for tickets about the Proc-BackOff CPAN distribution.

Report information
The Basics
Id: 79744
Status: new
Priority: 0/
Queue: Proc-BackOff

People
Owner: Nobody in particular
Requestors: lamoz [...] adriver.ru
Cc:
AdminCc:

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



Subject: Strange exponential backoff behavior
Got strange delay values using Proc::BackOff::Exponential. Looked into the code. calculate_back_off returns $base ^ $exponent which is bitwise xor as per perlop manpage. Should it be $base ** $exponent instead?