Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/restart_waiter_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ class FastBootHelper
public:
FastBootHelper(): db("STATE_DB", 0)
{
db.set(FAST_REBOOT_KEY, "1");
db.set(FAST_REBOOT_KEY, "enable");
}

~FastBootHelper()
{
db.del({FAST_REBOOT_KEY});
db.set(FAST_REBOOT_KEY, "disable");
}
private:
DBConnector db;
Expand Down