Adds a key range for storing changes to monitor conf files.
This commit is contained in:
parent
a10ac552a5
commit
2beeadf8be
|
@ -559,3 +559,8 @@ const KeyRef maxUIDKey = LiteralStringRef("\xff\xff\xff\xff\xff\xff\xff\xff\xff\
|
|||
|
||||
const KeyRef databaseLockedKey = LiteralStringRef("\xff/dbLocked");
|
||||
const KeyRef mustContainSystemMutationsKey = LiteralStringRef("\xff/mustContainSystemMutations");
|
||||
|
||||
const KeyRangeRef monitorConfKeys(
|
||||
LiteralStringRef("\xff\x02/monitorConf/"),
|
||||
LiteralStringRef("\xff\x02/monitorConf0")
|
||||
);
|
||||
|
|
|
@ -252,4 +252,7 @@ extern const KeyRef maxUIDKey;
|
|||
extern const KeyRef databaseLockedKey;
|
||||
extern const KeyRef mustContainSystemMutationsKey;
|
||||
|
||||
// Key range reserved for storing changes to monitor conf files
|
||||
extern const KeyRangeRef monitorConfKeys;
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue