[
https://issues.apache.org/jira/browse/GOBBLIN-1527?focusedWorklogId=646133&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-646133
]
ASF GitHub Bot logged work on GOBBLIN-1527:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 03/Sep/21 01:38
Start Date: 03/Sep/21 01:38
Worklog Time Spent: 10m
Work Description: phet commented on a change in pull request #3382:
URL: https://github.com/apache/gobblin/pull/3382#discussion_r701526258
##########
File path:
gobblin-service/src/main/java/org/apache/gobblin/service/monitoring/FsJobStatusRetriever.java
##########
@@ -83,7 +84,7 @@ public FsJobStatusRetriever(Config config,
MultiContextIssueRepository issueRepo
}
return jobStatuses.iterator();
} catch (IOException e) {
- log.error("IOException encountered when retrieving job statuses for
flow: {},{},{}", flowGroup, flowName, flowExecutionId, e);
+ log.error(String.format("IOException encountered when retrieving job
statuses for flow: %s,%s,%s", flowGroup, flowName, flowExecutionId), e);
Review comment:
I changed this because my understanding of signature, `(String,
Object...)`, is that it treats all trailing args as format string
interpolations, not recognizing that the final one might be `? extends
Throwable`. thus it won't print the stacktrace, as `(String, Throwable)`
would. if that's incorrect, or I misinterpreted the intent here, let's revert
these lines.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 646133)
Time Spent: 50m (was: 40m)
> Extend REST `flowexecutions` endpoint with finder `latestFlowGroupExecutions`
> -----------------------------------------------------------------------------
>
> Key: GOBBLIN-1527
> URL: https://issues.apache.org/jira/browse/GOBBLIN-1527
> Project: Apache Gobblin
> Issue Type: Improvement
> Components: gobblin-restli
> Reporter: Kip Kohn
> Assignee: Hung Tran
> Priority: Major
> Time Spent: 50m
> Remaining Estimate: 0h
>
> Finder returns latest execution(s) for every flow within the identified flow
> group.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)