diff --git a/keydb.conf b/keydb.conf index 3874c5acd..50f9784a1 100644 --- a/keydb.conf +++ b/keydb.conf @@ -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 diff --git a/pkg/deb/conf/keydb.conf b/pkg/deb/conf/keydb.conf index 9cf1773c7..821591b32 100644 --- a/pkg/deb/conf/keydb.conf +++ b/pkg/deb/conf/keydb.conf @@ -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 diff --git a/pkg/rpm/keydb_build/keydb_rpm/etc/keydb/keydb.conf b/pkg/rpm/keydb_build/keydb_rpm/etc/keydb/keydb.conf index 9cf1773c7..821591b32 100644 --- a/pkg/rpm/keydb_build/keydb_rpm/etc/keydb/keydb.conf +++ b/pkg/rpm/keydb_build/keydb_rpm/etc/keydb/keydb.conf @@ -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 diff --git a/src/config.cpp b/src/config.cpp index ca9181788..9a608e6f8 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -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]))) {