Skip to content

Commit

Permalink
Remove threading information from batch info logs
Browse files Browse the repository at this point in the history
  • Loading branch information
QMalcolm committed Nov 20, 2024
1 parent 9779a41 commit 1ef88b3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/dbt/task/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,7 @@ def describe_batch(self, batch_start: Optional[datetime]) -> str:
formatted_batch_start = MicrobatchBuilder.format_batch_start(
batch_start, self.node.config.batch_size
)
import threading

return f"batch {formatted_batch_start} of {self.get_node_representation()} on {threading.current_thread().name}"
return f"batch {formatted_batch_start} of {self.get_node_representation()}"

def print_batch_result_line(
self,
Expand Down

0 comments on commit 1ef88b3

Please sign in to comment.