Skip to content

Commit

Permalink
storage/interop/protocol: use rocksdb backend
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrus committed Nov 2, 2023
1 parent 376cedd commit bc33cec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion go/storage/mkvs/db/rocksdb/rocksdb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ func verifyNodes(require *require.Assertions, rocksdb *rocksdbNodeDB, version ui
continue
}
_, ok := keySet[string(key)]
fmt.Println(key)
require.Equal(true, ok, "unexpected node in db")
delete(notVisited, string(key))
}
Expand Down
2 changes: 1 addition & 1 deletion go/storage/mkvs/interop/cmd/protocol_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func doProtoServer(*cobra.Command, []string) {

// Initialize a dummy storage backend.
storageCfg := api.Config{
Backend: database.BackendNameBadgerDB,
Backend: database.RocksDBBackend,
DB: dataDir,
MaxCacheSize: 16 * 1024 * 1024,
}
Expand Down

0 comments on commit bc33cec

Please sign in to comment.