Skip to content

Commit 60c41ad

Browse files
authored
Merge pull request #2166 from DarthMax/1.4_rename_key_file_setting
1.4 - Rename gds.enterprise.licenseFile to gds.enterprise.license_file
2 parents f4b024c + b6fa0d4 commit 60c41ad

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/asciidoc/installation.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,17 @@ Unlocking the Enterprise Edition of the Neo4j Graph Data Science library require
113113
To register for a license, please contact Neo4j at https://neo4j.com/contact-us/?ref=graph-analytics.
114114

115115
The license is issued in the form of a license key file, which needs to be placed in a directory accessible by the Neo4j server.
116-
You can configure the location of the license key file by setting the `gds.enterprise.licenseFile` option in the `neo4j.conf` configuration file of your Neo4j installation.
116+
You can configure the location of the license key file by setting the `gds.enterprise.license_file` option in the `neo4j.conf` configuration file of your Neo4j installation.
117117
The location must be specified using an absolute path.
118118
It is necessary to restart the database when configuring the license key for the first time and every time the license key is changed, e.g., when a new license key is added or the location of the key file changes.
119119

120120

121121
Example configuration for the license key file:
122122
----
123-
gds.enterprise.licenseFile=/path/to/my/license/keyfile
123+
gds.enterprise.license_file=/path/to/my/license/keyfile
124124
----
125125

126-
If the `gds.enterprise.licenseFile` setting is set to a non-empty value, the Neo4j Graph Data Science library will verify that the license key file is accessible and contains a valid license key.
126+
If the `gds.enterprise.license_file` setting is set to a non-empty value, the Neo4j Graph Data Science library will verify that the license key file is accessible and contains a valid license key.
127127
When a valid license key is configured, all Enterprise Edition features are unlocked.
128128
In case of a problem, e.g, when the license key file is inaccessible, the license has expired or is invalid for any other reason, all calls to the Neo4j Graph Data Science Library will result in an error, stating the problem with the license key.
129129

neo4j-adapter/src/main/java/org/neo4j/graphalgo/compat/EnterpriseLicensingSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public class EnterpriseLicensingSettings implements SettingsDeclaration {
3232

3333
public static final String ENTERPRISE_LICENSED = "gds.enterprise.licensed";
34-
public static final String ENTERPRISE_LICENSE_FILE = "gds.enterprise.licenseFile";
34+
public static final String ENTERPRISE_LICENSE_FILE = "gds.enterprise.license_file";
3535

3636
@Description("Sets the location of the file that contains the key to unlock the Enterprise Edition of the Neo4j Graph Data Science library")
3737
public static Setting<String> enterpriseLicenseFile = newBuilder(

0 commit comments

Comments
 (0)