Skip to content

Commit

Permalink
Merge pull request #50 from kqzh/update_br_version
Browse files Browse the repository at this point in the history
  • Loading branch information
kqzh authored Nov 21, 2022
2 parents ac9fa42 + 1ea0206 commit 7ea9282
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
15 changes: 9 additions & 6 deletions pkg/utils/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (

"github.com/stretchr/testify/assert"

"github.com/vesoft-inc/nebula-go/v3/nebula"
"github.com/vesoft-inc/nebula-go/v3/nebula/meta"
)

Expand All @@ -20,12 +21,14 @@ func TestDumpParseBackup(t *testing.T) {
[]byte("__tags__.sst"),
}
backup := &meta.BackupMeta{
SpaceBackups: make(map[int32]*meta.SpaceBackupInfo),
MetaFiles: files,
BackupName: []byte("backup_test"),
Full: true,
AllSpaces: true,
CreateTime: time.Now().Unix(),
SpaceBackups: make(map[int32]*meta.SpaceBackupInfo),
MetaFiles: files,
BackupName: []byte("backup_test"),
Full: true,
AllSpaces: true,
CreateTime: time.Now().Unix(),
BaseBackupName: []byte("base_backup_test"),
StorageHosts: make([]*nebula.HostAddr, 0),
}

err := EnsureDir(LocalTmpDir)
Expand Down
6 changes: 3 additions & 3 deletions pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package version

var (
VerMajor = 0
VerMinor = 6
VerPatch = 1
VerMajor = 3
VerMinor = 3
VerPatch = 0
VerName = "Nebula Backup And Restore Utility Tool"
GitSha = "UNKNOWN"
GitRef = "UNKNOWN"
Expand Down

0 comments on commit 7ea9282

Please sign in to comment.