Skip to content
Snippets Groups Projects
Commit ab7c0209 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

add in a small delay on view_log entries to account for the fact that MySQL...

add in a small delay on view_log entries to account for the fact that MySQL datetimes don't include milliseconds.
parent 19a3429b
No related branches found
No related tags found
No related merge requests found
......@@ -158,8 +158,10 @@
:model model
:model_id model-id
:timestamp (u/new-sql-timestamp))
;; we sleep a few milliseconds to ensure no events have the same timestamp
(Thread/sleep 5))]
;; we sleep a bit to ensure no events have the same timestamp
;; sadly, MySQL doesn't support milliseconds so we have to wait a second
;; otherwise our records are out of order and this test fails :(
(Thread/sleep 1000))]
(do
(create-view (user->id :crowberto) "card" (:id card2))
(create-view (user->id :crowberto) "dashboard" (:id dash1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment