Increase yaql quotas

There were too small quotas that prevent UI
definitions to create large collections

Change-Id: I3fa2bbfc2449570d58e866f1e5c5acc744f6d8c6
Closes-Bug: #1616986
This commit is contained in:
Stan Lagun 2016-08-30 10:30:26 -07:00
parent 5d0e9e6858
commit 8ecfd1dd98
1 changed files with 3 additions and 2 deletions

View File

@ -20,8 +20,9 @@ from yaql.language import exceptions as yaql_exc
def _set_up_yaql():
legacy_engine_options = {
'yaql.limitIterators': 100,
'yaql.memoryQuota': 20000}
'yaql.limitIterators': 10000,
'yaql.memoryQuota': 1000000
}
return yaql.YaqlFactory().create(options=legacy_engine_options)
YAQL = _set_up_yaql()