mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
c8f2febaa1
This is needed for Windows support, which uses `\` instead of `/` as file separator Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/70
9 lines
375 B
Go
9 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"
|
|
)
|