Commit b205e478 authored by Marko Mäkelä's avatar Marko Mäkelä

Work around MDEV-23416 (change Warning to Note)

Ever since MDEV-15053 changed something in the page flushing,
we are occasionally observing pending I/O for a data file that
is about to be deleted.

fil_check_pending_io(): Change the Warning to a note.

This message was already made less frequent in
commit dcc0baf5 (10.5.4)
and commit 65f831d1 (10.3.24, 10.4.14).
parent 314a90e1
......@@ -1995,7 +1995,7 @@ fil_check_pending_io(
/* Give a warning every 10 second, starting after 1 second */
if ((count % 500) == 50) {
ib::warn() << "Trying to delete"
ib::info() << "Trying to delete"
" tablespace '" << space->name
<< "' but there are "
<< space->n_pending_flushes
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment