All,
I put in a local fix for USERGRID-258
<https://issues.apache.org/jira/browse/USERGRID-258>. It looks like the
query was hard coded to only return 10, and further more the default logic
in the query APIs limits to 10 by default.
I switched it to 10000 which should be sufficient, however i'm wondering if
a broader change may be required at some point. The scope of my change was
in ManagementServiceImpl
organizations = buildOrgBiMap( getOrganizations( null, 10000 )
);
Is there any issue with this change for now? I noticed in the UI it was
rendering fine when I added many organizations.
I also took the liberty of upgrading apache parent to the latest.
John