Don't count rows on homepage for DBs > 100MB (#688)

Closes #649.
This commit is contained in:
Simon Willison 2020-02-28 17:08:29 -08:00 committed by GitHub
commit 7f5a330377
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -229,7 +229,7 @@ def app_client_with_cors():
@pytest.fixture(scope="session")
def app_client_immutable_and_inspect_file():
inspect_data = {'fixtures': {'tables': {'sortable': {'count': 100}}}}
inspect_data = {"fixtures": {"tables": {"sortable": {"count": 100}}}}
yield from make_app_client(is_immutable=True, inspect_data=inspect_data)