mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 02:15:45 +02:00
feat(server): Use new journal format (#563)
This commit is contained in:
parent
cdc31fc98c
commit
2386b02234
30 changed files with 302 additions and 179 deletions
|
@ -84,7 +84,7 @@ TEST_F(RdbTest, LoadEmpty) {
|
|||
|
||||
TEST_F(RdbTest, LoadSmall6) {
|
||||
io::FileSource fs = GetSource("redis6_small.rdb");
|
||||
RdbLoader loader(service_->script_mgr());
|
||||
RdbLoader loader{service_.get()};
|
||||
|
||||
// must run in proactor thread in order to avoid polluting the serverstate
|
||||
// in the main, testing thread.
|
||||
|
@ -121,7 +121,7 @@ TEST_F(RdbTest, LoadSmall6) {
|
|||
|
||||
TEST_F(RdbTest, Stream) {
|
||||
io::FileSource fs = GetSource("redis6_stream.rdb");
|
||||
RdbLoader loader(service_->script_mgr());
|
||||
RdbLoader loader{service_.get()};
|
||||
|
||||
// must run in proactor thread in order to avoid polluting the serverstate
|
||||
// in the main, testing thread.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue