Todd Sharp

Results 7 comments of Todd Sharp

As a workaround, I can use a proxy, but support via the Java agent would be nice!

To clarify: I'm using version `2.7.0.RC1`.

The issue that I am dealing with is an exception when unmarshalling: ``` java.lang.IllegalArgumentException: Invalid format: "2020-10-01T19:26:00Z" is malformed at "Z" at org.joda.time.format.DateTimeFormatter.parseDateTime(DateTimeFormatter.java:945) at org.joda.time.DateTime.parse(DateTime.java:160) at org.joda.time.DateTime$parse.call(Unknown Source) at grails.plugins.elasticsearch.conversion.unmarshall.DomainClassUnmarshaller.unmarshallProperty(DomainClassUnmarshaller.groovy:254)...

Let's see what @puneetbehl thinks. I think he is offline for a few days.

As a workaround, I'm able to create a converter class: ``` package codes.recursive import java.beans.PropertyEditorSupport import java.text.SimpleDateFormat class DateConverter extends PropertyEditorSupport { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'") def value String...