Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions internal/cmd/server/enable_backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ var EnableBackupCmd = base.Cmd{
TraverseChildren: true,
DisableFlagsInUseLine: true,
}
cmd.Flags().String(
"window", "",
"(deprecated) The time window for the daily backup to run. All times are in UTC. 22-02 means that the backup will be started between 10 PM and 2 AM.")
return cmd
},
Run: func(s state.State, cmd *cobra.Command, args []string) error {
Expand All @@ -35,11 +32,6 @@ var EnableBackupCmd = base.Cmd{
return fmt.Errorf("server not found: %s", idOrName)
}

window, _ := cmd.Flags().GetString("window")
if window != "" {
cmd.Print("[WARN] The ability to specify a backup window when enabling backups has been removed. Ignoring flag.\n")
}

action, _, err := s.Client().Server().EnableBackup(s, server, "")
if err != nil {
return err
Expand Down