bitbake: toaster: machines Fix undefined variables

pagesize and orderby were undefined causing an error to be thrown when
browsing to the all machines page

(Bitbake rev: 388cfb26695ffd6ac0498e5de571cd4a5e083f8b)

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Michael Wood 2015-01-30 18:18:44 +00:00 committed by Richard Purdie
parent b2a903e1ba
commit 6969a3d3ea
1 changed files with 1 additions and 0 deletions

View File

@ -2774,6 +2774,7 @@ if toastermain.settings.MANAGED:
# define here what parameters the view needs in the GET portion in order to
# be able to display something. 'count' and 'page' are mandatory for all views
# that use paginators.
(pagesize, orderby) = _get_parameters_values(request, 10, 'updated:+')
mandatory_parameters = { 'count': 10, 'page' : 1, 'orderby' : 'name:+' };
retval = _verify_parameters( request.GET, mandatory_parameters )
if retval: