From 398ab7cb4506ec50442e83ea098b8f674858ad8a Mon Sep 17 00:00:00 2001 From: Dheeraj Manjunath Date: Fri, 20 May 2022 19:44:13 -0400 Subject: [PATCH] Increase materialized view timeout to 6 hours (#3133) --- 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):