Replies: 1 comment 2 replies
-
Which timezone is your application configured in? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I am encountering an issue where the created_at in the event metadata does not match up with the actual created at. The event metadata created_at is an hour earlier than the actual created at.
I have been looking through EloquentStoredEventRepository with a debugger, and in the persist() method on line 83, the created_at is still correct. However, after it passes through the setRawAttributes() method on line 85, the created_at that is being put in the meta_data is incorrect.
In this screenshot you can see that it's still correct
After passing through the setRawAttributes():
Our code relies on the event properties to execute tasks in a timely matter, thus it is crucial for this to work correctly. Any ideas are greatly appreciated. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions