Skip to content

Commit 62438cf

Browse files
authored
Merge pull request #758 from mronstro/22.10-dev
RONDB-954: Moving time forward by more than 4 seconds cause crash
2 parents fee323c + 324cc97 commit 62438cf

File tree

1 file changed

+2
-1
lines changed
  • storage/ndb/src/kernel/vm

1 file changed

+2
-1
lines changed

storage/ndb/src/kernel/vm/mt.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3685,7 +3685,8 @@ wait_time_tracking(thr_data *selfptr, Uint64 wait_time_in_ns)
36853685
return;
36863686
}
36873687
}
3688-
require(false);
3688+
Uint64 secs_waited = wait_time_in_ns / Uint64(1000000000);
3689+
g_eventLogger->info("Time forward by %llu seconds", secs_waited);
36893690
}
36903691

36913692
static bool check_queues_empty(thr_data *selfptr);

0 commit comments

Comments
 (0)