Skip to content

Commit

Permalink
Rename the config param to include_top_n_queries.
Browse files Browse the repository at this point in the history
  • Loading branch information
rslanka committed May 12, 2022
1 parent 820ade2 commit 794794a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ class BaseUsageConfig(BaseTimeWindowConfig):
format_sql_queries: bool = Field(
default=False, description="Whether to format sql queries"
)
include_top_sql_queries: bool = Field(
default=True, description="Whether to ingest top SQL queries."
include_top_n_queries: bool = Field(
default=True, description="Whether to ingest the top_n_queries."
)

@pydantic.validator("top_n_queries")
Expand Down

0 comments on commit 794794a

Please sign in to comment.