1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-24454 fixup: Fix plugins.feedback_plugin_send

In commit 3690c549c6
this test was not adjusted.
This commit is contained in:
Marko Mäkelä
2021-10-11 10:15:52 +03:00
parent 26eb666463
commit 1d71dacd51
2 changed files with 19 additions and 3 deletions

View File

@ -38,6 +38,6 @@ perl;
while ($_=<LOG>) {
$logg{$&}++ if /feedback plugin:.*/;
}
print "$logg{$_}: $_\n" for sort keys %logg;
print "$_\n" for sort keys %logg;
close LOG;
EOF