From 4fb9ab609041bde528f20d1bebd27495711a26a9 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 12 Feb 2024 15:59:42 +0000 Subject: [PATCH] Update expired query settings --- spectacles/validators/sql.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spectacles/validators/sql.py b/spectacles/validators/sql.py index 2407a28a..cccc2b5a 100644 --- a/spectacles/validators/sql.py +++ b/spectacles/validators/sql.py @@ -25,8 +25,8 @@ DEFAULT_CHUNK_SIZE = 500 DEFAULT_QUERY_CONCURRENCY = 10 DEFAULT_RUNTIME_THRESHOLD = 5 -EXPIRED_QUERY_WAIT_TIME = 600 -EXPIRED_RETRY_LIMIT = 2 +EXPIRED_QUERY_WAIT_TIME = 300 +EXPIRED_RETRY_LIMIT = 1 ProfilerTableRow = Tuple[str, str, float, str, str]