Skip to content

Commit

Permalink
fix: remove deprecated backup window flag
Browse files Browse the repository at this point in the history
  • Loading branch information
phm07 committed May 23, 2024
1 parent f2fb321 commit 2bddf46
Showing 1 changed file with 0 additions and 8 deletions.
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

0 comments on commit 2bddf46

Please sign in to comment.