From d13bb14f28931ace3b1f3f3a1796669b8141a909 Mon Sep 17 00:00:00 2001 From: Sawan Choudhary Date: Wed, 23 Oct 2019 16:29:22 +0530 Subject: [PATCH] Increase max_db_entries to make DB hold data for a consistent time Change-Id: I13e41e4dbc93be05562db951cf7f534d7620493f --- cloudpulse/db/sqlalchemy/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudpulse/db/sqlalchemy/models.py b/cloudpulse/db/sqlalchemy/models.py index c2f20d4..21b197c 100644 --- a/cloudpulse/db/sqlalchemy/models.py +++ b/cloudpulse/db/sqlalchemy/models.py @@ -39,7 +39,7 @@ sql_opts = [ default='InnoDB', help='MySQL engine to use.'), cfg.IntOpt('max_db_entries', - default=10, + default=240, help=('Maximum test result entries to be persisted ')), ]