mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
facet_suggest_time_limit_ms 200ms in tests, closes #2574
This commit is contained in:
parent
fa978ec100
commit
c76c3e6e6f
2 changed files with 2 additions and 1 deletions
|
|
@ -62,6 +62,7 @@ async def ds_client():
|
|||
"default_page_size": 50,
|
||||
"max_returned_rows": 100,
|
||||
"sql_time_limit_ms": 200,
|
||||
"facet_suggest_time_limit_ms": 200, # Up from 50 default
|
||||
# Default is 3 but this results in "too many open files"
|
||||
# errors when running the full test suite:
|
||||
"num_sql_threads": 1,
|
||||
|
|
|
|||
|
|
@ -875,7 +875,7 @@ async def test_settings_json(ds_client):
|
|||
"default_page_size": 50,
|
||||
"default_facet_size": 30,
|
||||
"default_allow_sql": True,
|
||||
"facet_suggest_time_limit_ms": 50,
|
||||
"facet_suggest_time_limit_ms": 200,
|
||||
"facet_time_limit_ms": 200,
|
||||
"max_returned_rows": 100,
|
||||
"max_insert_rows": 100,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue