Github user mmiklavc commented on the issue:
https://github.com/apache/metron/pull/1184
Looking at the code in parserbolt, I think the only thing missing with the
validate route is the original parser exception. Here's how errors are handled
when validation error occurs:
```
ErrorUtils.handleError(collector, error);
```
here's how they're handled when an exception occurs during parsing:
```
} catch (Throwable ex) {
handleError(originalMessage, tuple, ex, collector);
}
```---
