You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@metron.apache.org by justinleet <gi...@git.apache.org> on 2017/06/30 10:21:28 UTC

[GitHub] metron pull request #624: METRON-1004: Travis CI - Job Exceeded Maximum Time...

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

    https://github.com/apache/metron/pull/624#discussion_r125009044
  
    --- Diff: metron-interface/metron-rest/src/test/java/org/apache/metron/rest/controller/KafkaControllerIntegrationTest.java ---
    @@ -148,6 +150,15 @@ public void stop() {
     
       @Before
       public void setup() throws Exception {
    +    runner = new ComponentRunner.Builder()
    +            .withComponent("kafka", kafkaWithZKComponent)
    +            .withCustomShutdownOrder(new String[]{"kafka"})
    +            .build();
    +    try {
    +      runner.start();
    +    } catch (UnableToStartException e) {
    +      e.printStackTrace();
    --- End diff --
    
    I forgot this was in a run().  I changed it to a runtime exception, like you originally suggested.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---