Github user steveblackmon commented on a diff in the pull request:

    https://github.com/apache/incubator-streams/pull/62#discussion_r16003423
  
    --- Diff: 
streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/serializer/StreamsTwitterMapper.java
 ---
    @@ -68,7 +71,14 @@ public StreamsTwitterMapper() {
                     addDeserializer(DateTime.class, new 
StdDeserializer<DateTime>(DateTime.class) {
                         @Override
                         public DateTime deserialize(JsonParser jpar, 
DeserializationContext context) throws IOException, JsonProcessingException {
    -                        return 
TWITTER_FORMAT.parseDateTime(jpar.getValueAsString());
    +                        DateTime result = null;
    +                        try {
    +                            result = 
TWITTER_FORMAT.parseDateTime(jpar.getValueAsString());
    --- End diff --
    
    opening STREAMS-143 to address this issue


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to