Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update expired query settings #770

Merged
merged 2 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "spectacles"
version = "2.4.3"
version = "2.4.4"
description = "A command-line, continuous integration tool for Looker and LookML."
authors = ["Spectacles <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions spectacles/validators/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]


Expand Down