Subject: | fails to unpack undefined values in headers |
The type 'V' returns undef but line 268 in Net::AMQP::Common checks if the unpacked value is defined.
A fix is to change the line to:
die "Failed to unpack field '$field_name' type '$field_value_type' ('$table_input')"
if !defined $field_value && $field_value_type ne 'V';