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
While using this package we've run into an issue with the dateTime() / DATE_TIME column type in MongoDBSession -
while getObject(doc, schema) on line 489 properly handles DATE_TIME column type instantiation from the string pulled from Mongo, getObject(doc: DBObject, column: AbstractColumn<*, *, *>) on line 532 does not, and instead just does a basic doc.get which will fail for the DATE_TIME columns with something like:
java.lang.IllegalArgumentException: Can not set final org.joda.time.DateTime field expirationDate to java.lang.String
Let me know if you need further details or if there's anything else I can do to help.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
While using this package we've run into an issue with the dateTime() / DATE_TIME column type in MongoDBSession -
while
getObject(doc, schema)
on line 489 properly handles DATE_TIME column type instantiation from the string pulled from Mongo,getObject(doc: DBObject, column: AbstractColumn<*, *, *>)
on line 532 does not, and instead just does a basic doc.get which will fail for the DATE_TIME columns with something like:Let me know if you need further details or if there's anything else I can do to help.
Thanks!
The text was updated successfully, but these errors were encountered: