mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
10 lines
375 B
Go
10 lines
375 B
Go
|
package backupnames
|
||
|
|
||
|
const (
|
||
|
// RestoreInProgressFilename is the filename for "restore in progress" file
|
||
|
//
|
||
|
// This file is created at the beginning of the restore process and is deleted at the end of the restore process.
|
||
|
// If this file exists, then it is unsafe to read the storage data, since it can be incomplete.
|
||
|
RestoreInProgressFilename = "restore-in-progress"
|
||
|
)
|