From 4eeb1feeea82906558c5025df56e53c1ee675e04 Mon Sep 17 00:00:00 2001 From: Aqsa Date: Fri, 13 Jan 2017 11:40:11 +0100 Subject: [PATCH] Change Murano Dashboard Limit for Memory and Instances MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The commit changes the value of “limitIterators” to 10000 and the “memoryQuota” to 1000000. This will increase the instance count and memory quota that can be created in the template definition of “UI.yaml” file. Change-Id: Ia39203946ec76d77d64338041f387b1f176fa320 Closes-Bug: #1640998 --- muranodashboard/dynamic_ui/yaql_expression.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/muranodashboard/dynamic_ui/yaql_expression.py b/muranodashboard/dynamic_ui/yaql_expression.py index 258efb972..3e5c350d9 100644 --- a/muranodashboard/dynamic_ui/yaql_expression.py +++ b/muranodashboard/dynamic_ui/yaql_expression.py @@ -21,8 +21,8 @@ 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)