Skip to content

Commit

Permalink
Merge pull request #345 from PrefectHQ/overflow-live
Browse files Browse the repository at this point in the history
Show all data in live even when taller than terminal
  • Loading branch information
jlowin authored Oct 2, 2024
2 parents 7d9ca91 + 4979444 commit 13f6ee3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/controlflow/orchestration/print_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def update_live(self, latest: BaseMessage = None):
cf_console.print(format_event(latest))

def on_orchestrator_start(self, event: OrchestratorStart):
self.live: Live = Live(auto_refresh=False, console=cf_console)
self.live: Live = Live(
auto_refresh=False, console=cf_console, vertical_overflow="visible"
)
self.events.clear()
try:
self.live.start()
Expand Down

0 comments on commit 13f6ee3

Please sign in to comment.