mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-19 18:34:59 +00:00
Fix response cooking.
This commit is contained in:
@@ -7260,7 +7260,8 @@ sub send_data {
|
|||||||
while ( !$key ) {
|
while ( !$key ) {
|
||||||
print `ls -l $data_file`;
|
print `ls -l $data_file`;
|
||||||
print "Send $data_file [Ynaq]: ";
|
print "Send $data_file [Ynaq]: ";
|
||||||
$key = lc(<STDIN>);
|
$key = <STDIN>;
|
||||||
|
$key = lc(chomp($$key));
|
||||||
last DATA_FILE if $key eq 'q';
|
last DATA_FILE if $key eq 'q';
|
||||||
next DATA_FILE if $key eq 'n';
|
next DATA_FILE if $key eq 'n';
|
||||||
last PROMPT if $key eq 'y';
|
last PROMPT if $key eq 'y';
|
||||||
|
Reference in New Issue
Block a user