Update version to expected version

This commit is contained in:
Ashlie Martinez 2023-02-22 12:26:18 -08:00
parent e3488b9a5c
commit 3edc931d44
2 changed files with 2 additions and 5 deletions

View File

@ -5,7 +5,6 @@ import (
"encoding/json"
"fmt"
"io"
"math"
"runtime/trace"
"sort"
"strings"
@ -39,9 +38,7 @@ const (
// versionWithNameInMeta points to the backup format version where we begin
// storing files in kopia with their item ID instead of their OneDrive file
// name.
// TODO(ashmrtn): Update this to a real value when we merge the file name
// change. Set to MAXINT for now to keep the if-check using it working.
versionWithNameInMeta = math.MaxInt
versionWithNameInMeta = 5
// versionWithDataAndMetaFilesInDir moves the .dirmeta entries to the
// directory they belong to instead of being in the parent of the directory
// they belong to.

View File

@ -14,7 +14,7 @@ import (
"github.com/alcionai/corso/src/pkg/selectors"
)
const Version = 3
const Version = 5
// Backup represents the result of a backup operation
type Backup struct {