From 452d01c38550061129969fcfa21fc300aeb164fe Mon Sep 17 00:00:00 2001 From: Dheeraj Manjunath Date: Fri, 20 May 2022 18:24:59 -0400 Subject: [PATCH] Increase materialized view timeout to 6 hours --- discovery-provider/src/tasks/index_materialized_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discovery-provider/src/tasks/index_materialized_views.py b/discovery-provider/src/tasks/index_materialized_views.py index f534d4df74d..6b9c6aaf6bf 100644 --- a/discovery-provider/src/tasks/index_materialized_views.py +++ b/discovery-provider/src/tasks/index_materialized_views.py @@ -5,7 +5,7 @@ logger = logging.getLogger(__name__) -DEFAULT_UPDATE_TIMEOUT = 60 * 30 # 30 minutes +DEFAULT_UPDATE_TIMEOUT = 60 * 60 * 6 # 6 hours def update_views(self, db):