mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 13:11:32 +00:00
Fix Agent.username default.
This commit is contained in:
@@ -32,7 +32,7 @@ has 'username' => (
|
||||
is => 'rw',
|
||||
isa => 'Str',
|
||||
required => 1,
|
||||
default => $ENV{USER} || $ENV{LOGNAME},
|
||||
default => sub { return $ENV{USER} || $ENV{LOGNAME} },
|
||||
);
|
||||
|
||||
has 'hostname' => (
|
||||
|
Reference in New Issue
Block a user