-
-
Notifications
You must be signed in to change notification settings - Fork 506
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UUID classes fail to be deserialized: incomplete object #303
Comments
Hi, @GinoPane! Thanks for the bug report. Which version of ramsey/uuid are you using? Is there any code you can share to show how you are using it? |
It's ramsey/uuid-doctrine 1.6.0 To be honest, the code is extremely generic. The fatal error happens on this code: $user = (new User())
->setCreatedAt(new \DateTime());
$this->entityManager->persist($user);
$this->entityManager->flush(); Right after Ah, and
The most weird thing is that if I throw a generic exception from |
More digging gave these errors:
And as a result I found out that disabling of doctrine metadata cache solves the issue: But the root cause is still inclear 🤷♂ |
Thank you for the details. I'll start from the premise that something is broken in the unserialization methods and see if that leads me anywhere. |
@ramsey great, thanks! It would be great to have any kind of built-in check that |
I think this might be related to #259 |
Strike that. It's not related to #259. I've been able to trace the problem to this commit in ramsey/collection (ramsey/collection@b05f542) that's related to ramsey/collection#47. I'm working on a solution that fixes this in ramsey/uuid. |
@GinoPane, please upgrade to ramsey/uuid 4.0.1 and let me know if this fixes the errors you're seeing. Since you're using ramsey/uuid-doctrine in your project, I think this this what you will need to run to force an update to the latest version of ramsey/uuid: composer update --with-dependencies ramsey/uuid-doctrine After doing this, you can see what version of ramsey/uuid is installed by running: composer show ramsey/uuid It should show version 4.0.1. If it does, and you're still seeing the errors, then I'll need to dig deeper. Thanks! |
Wow! Seems it works. Any way my problem regarding it is solved. |
@ramsey thanks! The issue seems to be solved. |
I’m glad it’s working now. Thank you for the bug report! |
Describe the bug
Got this error when using the library in "prod" environment (symfony 5 via ramsey/uuid-doctrine):
It looks like the system tries to unserialize UUID for any reason and it fails. It is hard to reproduce, but maybe you've seen anything similar?
The text was updated successfully, but these errors were encountered: