Skip to content

Commit

Permalink
feat(managerclient): adds new task type - fastrestore
Browse files Browse the repository at this point in the history
This adds a new task type for fast vnode restore.

Fixes: #4200
  • Loading branch information
VAveryanov8 committed Jan 20, 2025
1 parent f7f9ac2 commit d9a5fbf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions v3/pkg/managerclient/tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import "github.com/scylladb/go-set/strset"
const (
BackupTask string = "backup"
RestoreTask string = "restore"
FastRestoreTask string = "fastrestore"
HealthCheckTask string = "healthcheck"
RepairTask string = "repair"
SuspendTask string = "suspend"
Expand All @@ -18,6 +19,7 @@ const (
var TasksTypes = strset.New(
BackupTask,
RestoreTask,
FastRestoreTask,
HealthCheckTask,
RepairTask,
SuspendTask,
Expand Down

0 comments on commit d9a5fbf

Please sign in to comment.