Fix: Disable stdout progress in TUI mode to prevent display breaking
This commit is contained in:
@ -103,8 +103,8 @@ func executeRestoreWithTUIProgress(cfg *config.Config, log logger.Logger, archiv
|
||||
}
|
||||
defer dbClient.Close()
|
||||
|
||||
// Create restore engine
|
||||
engine := restore.New(cfg, log, dbClient)
|
||||
// Create restore engine with silent progress (no stdout interference with TUI)
|
||||
engine := restore.NewSilent(cfg, log, dbClient)
|
||||
|
||||
// Execute restore based on type
|
||||
var restoreErr error
|
||||
|
||||
Reference in New Issue
Block a user