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 committed Jul 31, 2024
1 parent b13d990 commit 4294452
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
from datahub.utilities.logging_manager import get_log_buffer
from datahub.utilities.urns.urn import Urn


logger = logging.getLogger(__name__)


Expand Down Expand Up @@ -213,7 +212,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 4294452

Please sign in to comment.