We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fee323c commit 324cc97Copy full SHA for 324cc97
storage/ndb/src/kernel/vm/mt.cpp
@@ -3685,7 +3685,8 @@ wait_time_tracking(thr_data *selfptr, Uint64 wait_time_in_ns)
3685
return;
3686
}
3687
3688
- require(false);
+ Uint64 secs_waited = wait_time_in_ns / Uint64(1000000000);
3689
+ g_eventLogger->info("Time forward by %llu seconds", secs_waited);
3690
3691
3692
static bool check_queues_empty(thr_data *selfptr);
0 commit comments