Github user SreeramGarlapati commented on a diff in the pull request: https://github.com/apache/storm/pull/2026#discussion_r107514839 --- Diff: external/storm-eventhubs/src/main/java/org/apache/storm/eventhubs/spout/SimplePartitionManager.java --- @@ -65,16 +60,13 @@ public void open() throws Exception { offset = Constants.DefaultStartingOffset; } - IEventHubFilter filter; if (offset.equals(Constants.DefaultStartingOffset) && config.getEnqueueTimeFilter() != 0) { - filter = new EventHubEnqueueTimeFilter(config.getEnqueueTimeFilter()); - } - else { - filter = new EventHubOffsetFilter(offset); + offset = Long.toString(config.getEnqueueTimeFilter()); --- End diff -- >getEnqueueTimeFilter [](start = 36, length = 20) why is TimeFilter translated to Offset filter ?
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---