update enterprise wording for keydb.config lk

Former-commit-id: feb2d31e6544763c94f4abaea69bc98bd1cb8b17
This commit is contained in:
benschermel 2021-03-21 05:19:28 +00:00
parent 2e5ecd9003
commit 5c145039d4
4 changed files with 13 additions and 13 deletions

View File

@ -1828,9 +1828,9 @@ server-threads 2
# bringing up replicas can result in data loss (the first master will win).
# active-replica yes
# Enable Pro? KeyDB pro provides support for pro only features
# note: you may omit the license key to demo pro features for a limited time
# enable-pro [License Key]
# Enable Enterprise? KeyDB Enterprise provides support for Enterprise only features
# note: you may omit the license key to demo Enterprise features for a limited time
# enable-enterprise [License Key]
# Enable FLASH support? (Pro Only)
# Enable FLASH support? (Enterprise Only)
# storage-provider flash /path/to/flash/db

View File

@ -1568,9 +1568,9 @@ server-threads 2
# bringing up replicas can result in data loss (the first master will win).
# active-replica yes
# Enable Pro? KeyDB pro provides support for pro only features
# note: you may omit the license key to demo pro features for a limited time
# enable-pro [License Key]
# Enable Enterprise? KeyDB Enterprise provides support for Enterprise only features
# note: you may omit the license key to demo Enterprise features for a limited time
# enable-enterprise [License Key]
# Enable FLASH support? (Pro Only)
# Enable FLASH support? (Enterprise Only)
# storage-provider flash /path/to/flash/db

View File

@ -1568,9 +1568,9 @@ server-threads 2
# bringing up replicas can result in data loss (the first master will win).
# active-replica yes
# Enable Pro? KeyDB pro provides support for pro only features
# note: you may omit the license key to demo pro features for a limited time
# enable-pro [License Key]
# Enable Enterprise? KeyDB Enterprise provides support for Enterprise only features
# note: you may omit the license key to demo Enterprise features for a limited time
# enable-enterprise [License Key]
# Enable FLASH support? (Pro Only)
# Enable FLASH support? (Enterprise Only)
# storage-provider flash /path/to/flash/db

View File

@ -730,7 +730,7 @@ void loadServerConfigFromString(char *config) {
g_sdsProvider = sdsdup(argv[1]);
if (argc > 2)
g_sdsArgs = sdsdup(argv[2]);
} else if (!strcasecmp(argv[0],"enable-pro") && (argc == 1 || argc == 2)) {
} else if (!strcasecmp(argv[0],"enable-enterprise") && (argc == 1 || argc == 2)) {
if (argc == 2)
{
if (!FValidKey(argv[1], strlen(argv[1]))) {