Description of problem: If a bundle contains more than 200 files, the bundle files page only displays 200 of them. Version-Release number of selected component (if applicable): 3.1.2 How reproducible: Always Steps to Reproduce: 1. Install and start JBoss ON 3.1.2 system. 2. Import platform resource. 3. Create new compatible resource group called _All Platforms_: * *Name*: `All Platforms` * *Select Members*: _add all resources from platform category_ 4. Create jon-31-bundle-manyFiles bundle archive containing 300 files: mkdir -p jon-31-bundle-manyFiles pushd jon-31-bundle-manyFiles mkdir -p files cat >deploy.xml <<EOF <?xml version="1.0"?> <project name="manyFiles" default="main" xmlns:rhq="antlib:org.rhq.bundle"> <target name="main" /> <rhq:bundle name="Many Files Test Bundle" version="1.0" description="A sample bundle consisting of 300 files"> <rhq:deployment-unit name="files" manageRootDir="false"> EOF for file in {001..300}; do echo "This is File #${file}." >"files/file-${file}.txt" echo ' <rhq:file name="files/file-'"${file}"'.txt" destinationFile="files/file-'"${file}"'.txt" replace="true" />' >>deploy.xml done cat >>deploy.xml <<EOF </rhq:deployment-unit> </rhq:bundle> </project> EOF zip -qr ../jon-31-bundle-manyFiles.zip . popd 5. From JBoss ON UI, create bundle using jon-31-bundle-manyFiles bundle archive. 6. Navigate to the bundle's file list. Actual results: Total Rows is reported as 200. Additionally, note that not all the files are visible in the files table. Expected results: Total Rows should be 300 and all files should be visible. Additional info: It appears that the bundle files UI page is missing a page control.
This issue also affects JBoss ON 3.2
git commit to master: 9b6c82e
Moving to ON_QA as available to test with brew build of DR01: https://brewweb.devel.redhat.com//buildinfo?buildID=373993
Created attachment 924460 [details] bundle-files
Created attachment 924461 [details] bundle-wizard-files
verified in jon 3.3 dr1 screen-shots attached