Increase granularity of deployment progress bar

This is accomplished by increasing the nesting level of the API call that
retrieves stack resources.

Change-Id: I8bf631fad378e4b28bdeda60cd6c90a10e434881
Closes-Bug: 1688630
This commit is contained in:
Honza Pokorny 2017-05-05 15:31:45 -03:00
parent 345835e6ba
commit eba116394c
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes `bug 1688630 <https://launchpad.net/bugs/1688630>`__
Increase granularity of deployment progress bar to provide more accurate
feedback

View File

@ -51,7 +51,9 @@ class HeatApiService {
}
getResources(stackName, stackId) {
return this.defaultRequest(`/stacks/${stackName}/${stackId}/resources`);
return this.defaultRequest(
`/stacks/${stackName}/${stackId}/resources?nested_depth=3`
);
}
getResource(stack, resourceName) {