Merge branch 'license_status_fix' into 'keydbpro'
license status OK if not checking license Closes #14 See merge request keydb-dev/KeyDB-Pro!19 Former-commit-id: f66d0970b1eb9be50210a88bf773769a40513521
This commit is contained in:
commit
ed6dda0887
@ -6120,7 +6120,11 @@ sds genRedisInfoString(const char *section) {
|
||||
"variant:enterprise\r\n"
|
||||
"license_status:%s\r\n"
|
||||
"mvcc_depth:%d\r\n",
|
||||
#ifdef NO_LICENSE_CHECK
|
||||
"OK",
|
||||
#else
|
||||
cserver.license_key ? "OK" : "Trial",
|
||||
#endif
|
||||
mvcc_depth
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user