Skip to content

Commit

Permalink
Fix perf alert tool call
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandInguva committed Oct 6, 2023
1 parent af9da31 commit 034992b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdks/python/apache_beam/testing/analyzers/perf_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ def run_change_point_analysis(


def run(
*,
big_query_metrics_fetcher: MetricsFetcher = BigQueryMetricsFetcher(),
config_file_path: Optional[str] = None,
) -> None:
Expand Down Expand Up @@ -209,4 +210,4 @@ def run(
if unknown_args:
logging.warning('Discarding unknown arguments : %s ' % unknown_args)

run(known_args.config_file_path)
run(config_file_path=known_args.config_file_path)

0 comments on commit 034992b

Please sign in to comment.