Github user cestella commented on a diff in the pull request: https://github.com/apache/metron/pull/619#discussion_r122716256 --- Diff: metron-platform/metron-elasticsearch/src/test/java/org/apache/metron/elasticsearch/integration/components/ElasticSearchComponent.java --- @@ -178,8 +195,11 @@ public boolean hasIndex(String indexName) { @Override public void stop() { - node.close(); + try { + node.close(); + } catch (IOException e) { + e.printStackTrace(); --- End diff -- We either want to throw up the exception or at least log it with a logger, rather than stdout.
--- 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. ---