mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
feat(acl): add acl keys to acl save/load (#2273)
* add acl keys to acl savel/load * add tests
This commit is contained in:
parent
2703d4635d
commit
8323c82dc5
6 changed files with 13 additions and 10 deletions
|
@ -1362,7 +1362,7 @@ void Transaction::LogAutoJournalOnShard(EngineShard* shard) {
|
|||
return;
|
||||
|
||||
// Only write commands and/or no-key-transactional commands are logged
|
||||
if ((cid_->IsWriteOnly()) == 0 && (cid_->opt_mask() & CO::NO_KEY_TRANSACTIONAL) == 0)
|
||||
if (cid_->IsWriteOnly() == 0 && (cid_->opt_mask() & CO::NO_KEY_TRANSACTIONAL) == 0)
|
||||
return;
|
||||
|
||||
// If autojournaling was disabled and not re-enabled, skip it
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue