Description of problem: Invoking to_string has the side effect of appending 'undef' to an array attribute. Version-Release number of selected component (if applicable): perl-Exception-Base-0.2500-1.el7.noarch.rpm perl v5.16.3 How reproducible: Always Steps to Reproduce: Can reproduce with this perl script: #!/bin/perl use warnings; use strict; use Data::Dumper; use Exception::Base 'MyException', => { message => 'Validation error', has => [ qw(class errors) ], string_attributes => [ 'message', 'class', 'errors' ] }; eval { MyException->throw( class => __PACKAGE__, errors => ["error 1", "error 2", "error 3"] ); }; my $exception = $@; print( Dumper($exception->errors()) . "\n"); $exception->to_string(); print( Dumper($exception->errors()) . "\n"); Actual results: Can see an additional 'undef' in the array returned after invoking to_string(); Expected results: The returned array should be the same as when thrown. Additional info:
perl-Exception-Base-0.2501-1.el7 has been submitted as an update to Fedora EPEL 7. https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-22753b2cc4
perl-Exception-Base-0.2501-1.el7 has been pushed to the Fedora EPEL 7 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-22753b2cc4
perl-Exception-Base-0.2501-1.el7 has been pushed to the Fedora EPEL 7 stable repository. If problems still persist, please make note of it in this bug report.
FEDORA-2023-ae45d14c82 has been submitted as an update to Fedora 39. https://bodhi.fedoraproject.org/updates/FEDORA-2023-ae45d14c82
FEDORA-2023-ae45d14c82 has been pushed to the Fedora 39 stable repository. If problem still persists, please make note of it in this bug report.