Update fault()'s output to inidcate the possibly meaninglessness of the reported system error.
This commit is contained in:
parent
8f8463e91e
commit
8b1ff67604
@ -58,7 +58,9 @@ sub respond {
|
||||
sub fault {
|
||||
my $self = shift;
|
||||
my ($msg) = shift || "program fault - command not performed";
|
||||
print STDERR "$0 [$$]: $msg ($!)\n";
|
||||
print STDERR "$0 [$$]: $msg\n";
|
||||
print STDERR $name, "[$$]: Last system error: $!"
|
||||
." (Likely irelevant--debug the crashed plugin to ensure it handles \$! properly)";
|
||||
$self->respond("Error - " . $msg);
|
||||
return $PROMPT;
|
||||
}
|
||||
|
@ -90,7 +90,9 @@ sub fault {
|
||||
my $self = shift;
|
||||
my ($msg) = shift || "program fault - command not performed";
|
||||
my ($name) = split /\s+/, $0, 2;
|
||||
print STDERR $name, "[$$]: $msg ($!)\n";
|
||||
print STDERR $name, "[$$]: $msg\n";
|
||||
print STDERR $name, "[$$]: Last system error: $!"
|
||||
." (Likely irelevant--debug the crashed plugin to ensure it handles \$! properly)";
|
||||
return $self->respond(451, "Internal error - try again later - " . $msg);
|
||||
}
|
||||
|
||||
|
4
t/misc.t
4
t/misc.t
@ -10,14 +10,14 @@ ok(my ($smtpd, $conn) = Test::Qpsmtpd->new_conn(), "get new connection");
|
||||
{
|
||||
my $fault;
|
||||
stderr_like { $fault = $smtpd->fault }
|
||||
qr/program fault - command not performed \(/,
|
||||
qr/program fault - command not performed.*Last system error:/ms,
|
||||
'fault outputs proper warning to STDOUT';
|
||||
is($fault->[0], 451, 'fault returns 451');
|
||||
};
|
||||
{
|
||||
my $fault;
|
||||
stderr_like { $fault = $smtpd->fault('test message') }
|
||||
qr/test message \(/,
|
||||
qr/test message.*Last system error/ms,
|
||||
'fault outputs proper custom warning to STDOUT';
|
||||
is($fault->[1], 'Internal error - try again later - test message',
|
||||
'returns the input message');
|
||||
|
Loading…
Reference in New Issue
Block a user