[
https://issues.apache.org/jira/browse/BEAM-4176?focusedWorklogId=127973&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-127973
]
ASF GitHub Bot logged work on BEAM-4176:
----------------------------------------
Author: ASF GitHub Bot
Created on: 26/Jul/18 23:55
Start Date: 26/Jul/18 23:55
Worklog Time Spent: 10m
Work Description: youngoli commented on a change in pull request #6073:
[BEAM-4176] Validate Runner Tests generalization and enable for local reference
runner
URL: https://github.com/apache/beam/pull/6073#discussion_r205634684
##########
File path:
runners/direct-java/src/main/java/org/apache/beam/runners/direct/portable/job/ReferenceRunnerJobService.java
##########
@@ -200,5 +218,17 @@ public void close() throws Exception {
LOG.warn("Exception while closing preparing job {}", preparingJob);
}
}
+ while (!artifactStagingServices.isEmpty()) {
+ GrpcFnServer<LocalFileSystemArtifactStagerService>
artifactStagingService =
+ artifactStagingServices.remove();
+ try {
+ artifactStagingService.close();
+ } catch (Exception e) {
+ LOG.error(
+ "Unable to close staging sevice started on %s",
+ artifactStagingService.getApiServiceDescriptor().getUrl(), e);
+ }
+ }
+ ;
Review comment:
Nitpick: stray semicolon?
----------------------------------------------------------------
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:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 127973)
Time Spent: 6h 10m (was: 6h)
> Java: Portable batch runner passes all ValidatesRunner tests that
> non-portable runner passes
> --------------------------------------------------------------------------------------------
>
> Key: BEAM-4176
> URL: https://issues.apache.org/jira/browse/BEAM-4176
> Project: Beam
> Issue Type: Bug
> Components: runner-flink
> Reporter: Ben Sidhom
> Priority: Major
> Time Spent: 6h 10m
> Remaining Estimate: 0h
>
> We need this as a sanity check that runner execution is correct.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)