Adds a key range for storing changes to monitor conf files.

This commit is contained in:
John Brownlee 2018-10-01 10:43:53 -07:00
parent a10ac552a5
commit 2beeadf8be
2 changed files with 8 additions and 0 deletions

View File

@ -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")
);

View File

@ -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