mirror of
https://github.com/ansible/awx.git
synced 2026-02-28 16:28:43 -03:30
Removed forwardslash that was breaking paginated workflow node requests.
The forward-slash in getWorkflowJobTemplateNodes was incorrectly interpreted as part of the pagesize integer (and thereby throwing an exception) when a complex workflow spanned multiple pages of workflow nodes. Resolves: #4261 Signed-off-by: Dave Compton <sircompo@gmail.com>
This commit is contained in:
@@ -136,7 +136,7 @@ export default ['Rest', 'GetBasePath', '$q', 'NextPage', function(Rest, GetBaseP
|
|||||||
url = url + id + '/workflow_nodes?page_size=200';
|
url = url + id + '/workflow_nodes?page_size=200';
|
||||||
|
|
||||||
if(page) {
|
if(page) {
|
||||||
url += '/&page=' + page;
|
url += '&page=' + page;
|
||||||
}
|
}
|
||||||
|
|
||||||
Rest.setUrl(url);
|
Rest.setUrl(url);
|
||||||
|
|||||||
Reference in New Issue
Block a user