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 Mar 7, 2024
1 parent 3d27c44 commit ca3dfd3
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 @@ -21,9 +21,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 @@ -36,11 +33,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 ca3dfd3

Please sign in to comment.