summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--storage/innobase/fil/fil0fil.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/storage/innobase/fil/fil0fil.cc b/storage/innobase/fil/fil0fil.cc
index c515cd82c48..128d0da0d09 100644
--- a/storage/innobase/fil/fil0fil.cc
+++ b/storage/innobase/fil/fil0fil.cc
@@ -1342,14 +1342,15 @@ next:
goto next;
}
mutex_exit(&fil_system.mutex);
- os_thread_sleep(100);
+ os_thread_sleep(1000);
+ os_thread_yield();
mutex_enter(&fil_system.mutex);
if (!node->is_open()) {
goto next;
}
}
- ib::error() << "File '" << node->name
+ ib::fatal() << "File '" << node->name
<< "' has " << space->referenced()
<< " operations";
}