Skip to content

Commit

Permalink
fix(ci): Fix lint issue in datahub_ingestion_run_summary_provider.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro93 authored Jul 31, 2024
1 parent b13d990 commit 91eca6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def on_completion(
durationMs=self.get_cur_time_in_ms() - self.start_time_ms,
# Truncate summary such that the generated MCP will not exceed GMS's payload limit.
# Hardcoding the overall size of dataHubExecutionRequestResult to >1MB by trimming summary to 800,000 chars
report=summary[-self._MAX_SUMMARY_SIZE:],
report=summary[-self._MAX_SUMMARY_SIZE :],
structuredReport=structured_report,
)

Expand Down

0 comments on commit 91eca6d

Please sign in to comment.