lib/backup/actions: remove misleading comment about the default value for Concurrency field

This commit is contained in:
Aliaksandr Valialkin 2023-07-06 14:07:08 -07:00
parent be866b3b6b
commit 3286ca3318
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1
2 changed files with 0 additions and 2 deletions

View file

@ -28,7 +28,6 @@ var (
// made via `/snapshot/create`. It works improperly on mutable files. // made via `/snapshot/create`. It works improperly on mutable files.
type Backup struct { type Backup struct {
// Concurrency is the number of concurrent workers during the backup. // Concurrency is the number of concurrent workers during the backup.
// Concurrency=1 by default.
Concurrency int Concurrency int
// Src is backup source // Src is backup source

View file

@ -22,7 +22,6 @@ import (
// It works improperly on mutable files. // It works improperly on mutable files.
type Restore struct { type Restore struct {
// Concurrency is the number of concurrent workers to run during restore. // Concurrency is the number of concurrent workers to run during restore.
// Concurrency=1 is used by default.
Concurrency int Concurrency int
// Src is the source containing backed up data. // Src is the source containing backed up data.