[ 
https://issues.apache.org/jira/browse/BEAM-4761?focusedWorklogId=131148&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-131148
 ]

ASF GitHub Bot logged work on BEAM-4761:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 04/Aug/18 00:06
            Start Date: 04/Aug/18 00:06
    Worklog Time Spent: 10m 
      Work Description: akedin closed pull request #6140: [BEAM-4761] Handle 
skipped tests in parallel Nexmark
URL: https://github.com/apache/beam/pull/6140
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git 
a/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/Main.java 
b/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/Main.java
index ecd7b5b9bf6..5aa68be7ea3 100644
--- a/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/Main.java
+++ b/sdks/java/nexmark/src/main/java/org/apache/beam/sdk/nexmark/Main.java
@@ -147,7 +147,9 @@ void runAll(String[] args) throws IOException {
 
         NexmarkConfiguration configuration = result.configuration;
         NexmarkPerf perf = result.perf;
-        if (perf.errors == null || perf.errors.size() > 0) {
+        if (perf == null) {
+          continue;
+        } else if (perf.errors == null || perf.errors.size() > 0) {
           successful = false;
         }
         appendPerf(options.getPerfFilename(), configuration, perf);


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 131148)
    Time Spent: 8h 40m  (was: 8.5h)

> Add postCommit scripts and perfkit dashboards for nexmark on Dataflow runner
> ----------------------------------------------------------------------------
>
>                 Key: BEAM-4761
>                 URL: https://issues.apache.org/jira/browse/BEAM-4761
>             Project: Beam
>          Issue Type: Test
>          Components: examples-nexmark
>            Reporter: Etienne Chauchot
>            Assignee: Andrew Pilloud
>            Priority: Major
>          Time Spent: 8h 40m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to