Revision fbe3803820a5c348861057e40e4cd3a5460843a3 authored by Antoine Lambert on 13 July 2022, 14:44:13 UTC, committed by Antoine Lambert on 13 July 2022, 14:44:35 UTC
Even if missing index to speedup origin visit queries has
been added to replica database, the configured timeouts for
origin_visit_get_with_statuses and origin_visit_find_by_date
were still too low to avoid query timeouts in production.

After performing some tests locally, bumping them to 2000ms
makes the timeouts go away.

Related to T4386
1 parent cfc8679
Raw File
pyproject.toml
[tool.black]
target-version = ['py37']

[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
force_sort_within_sections = true
back to top