bug with newer Net::ARP version numbers
Affects | Status | Importance | Assigned to | Milestone | ||
---|---|---|---|---|---|---|
mysql-mmm | Status tracked in Trunk | |||||
Trunk |
Fix Released
|
Medium
|
David Beveridge |
Bug Description
This bug was first reported on redhat bugzilla (and patched) some time ago.
https:/
in lib/Agent/
if ($Net::ARP::VERSION < 1.0) {
}
}
The check "$Net::ARP::VERSION < 1.0" outputs a warning for a version such as "1.0.8", and since warnings are fatal, the code dies before running the send_arp() steps.
The patch changes the check to
if ($Net::ARP::VERSION =~ /^0/) {
That is, check if the version starts with a zero.
This affects all versions including 2.2.1
Changed in mysql-mmm: | |
importance: | Undecided → Medium |
status: | New → Fix Committed |