Skip to content

Commit b205e47

Browse files
committed
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 dcc0baf (10.5.4) and commit 65f831d (10.3.24, 10.4.14).
1 parent 314a90e commit b205e47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/innobase/fil/fil0fil.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1995,7 +1995,7 @@ fil_check_pending_io(
19951995

19961996
/* Give a warning every 10 second, starting after 1 second */
19971997
if ((count % 500) == 50) {
1998-
ib::warn() << "Trying to delete"
1998+
ib::info() << "Trying to delete"
19991999
" tablespace '" << space->name
20002000
<< "' but there are "
20012001
<< space->n_pending_flushes

0 commit comments

Comments
 (0)