Skip to content

Commit

Permalink
Further optimized metadata request to Cromwell (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsasch authored Mar 27, 2019
1 parent 64958c1 commit 935d767
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@

### Fixed bug where failure message(s) are not displayed if the job failed before Cromwell was able to run it (most likely due to a validation error).

### Remove 'loading' screen when user has made an invalid query on job list page so the user can make changes.
### Removed 'loading' screen when user has made an invalid query on job list page so the user can make changes.

### Made behavior of message, log and execution icons consistent across all contexts in the job details page.

Also fixed bug where Google Console file links sometimes pointed to unexpected places.

### Improved the performance of the job details page when pointed at Cromwell by tailoring the metadata cache request.

## v0.6.2 Release Notes

### Fixed bug where scattered tasks' status, duration, timing diagram and number of attempts were inaccurate.
Expand Down
2 changes: 1 addition & 1 deletion servers/cromwell/jobs/controllers/jobs_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def get_job(id, **kwargs):
:rtype: JobMetadataResponse
"""

include_keys = ('attempt', 'callCaching', 'callRoot', 'calls',
include_keys = ('attempt', 'callCaching:hit', 'callRoot', 'calls',
'description', 'end', 'executionEvents', 'executionStatus',
'failures', 'inputs', 'jobId', 'labels', 'outputs',
'parentWorkflowId', 'returnCode', 'shardIndex', 'start',
Expand Down

0 comments on commit 935d767

Please sign in to comment.