Skip to content

Commit 415fb53

Browse files
authored
Increased the limit for long running query (#686)
1 parent d9d070c commit 415fb53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/common/large_queries_mixin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_long_running_query(self, extra_params):
117117
scale_factor = 1
118118
with self.cursor(extra_params) as cursor:
119119
while duration < min_duration:
120-
assert scale_factor < 1024, "Detected infinite loop"
120+
assert scale_factor < 4096, "Detected infinite loop"
121121
start = time.time()
122122

123123
cursor.execute(

0 commit comments

Comments
 (0)