You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm migrating a project to Grails3 and just wasted a lot of time figuring out why am I getting really strange errors. Just in case somebody encounters exception like: PSQLException: Bad value for type long : \x it means that your org.quartz.jobStore.driverDelegateClass property is incorrect or not set all. In my case it was the second thing.
I'm migrating a project to Grails3 and just wasted a lot of time figuring out why am I getting really strange errors. Just in case somebody encounters exception like:
PSQLException: Bad value for type long : \x
it means that yourorg.quartz.jobStore.driverDelegateClass
property is incorrect or not set all. In my case it was the second thing.After debugging and comparing the code of plugin in
v1
andv2
I've came to a conclusion that those lines of code are missing inv2
:https://github.com/grails-plugins/grails-quartz/blob/v1.0/QuartzGrailsPlugin.groovy#L398-L400
v2 for reference : https://github.com/grails-plugins/grails-quartz/blob/master/src/main/groovy/quartz/QuartzGrailsPlugin.groovy#L159-L168
So if anybody had a config like that when using plugin
v1
and Grails 2.x:he should remove the
props { }
outer block and things should get better.It makes me wonder why was this done like that in
v1
? 🤔The text was updated successfully, but these errors were encountered: