From 8d6f4552cd5c6089475f8696c821f39fe3b2cda1 Mon Sep 17 00:00:00 2001 From: gardspirito Date: Thu, 30 Jun 2022 16:01:50 +0300 Subject: [PATCH] nixos/neo4j: fix typo --- nixos/doc/manual/from_md/release-notes/rl-2211.section.xml | 7 +++++++ nixos/modules/services/databases/neo4j.nix | 2 +- nixos/tests/neo4j.nix | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml index 87066e6cdf2..383c9d8a04c 100644 --- a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml +++ b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml @@ -372,6 +372,13 @@ instead of using the Redis default. + + + Neo4j was updated from version 3 to version 4. See this + migration + guide on how to migrate your Neo4j instance. + + Matrix Synapse now requires entries in the diff --git a/nixos/modules/services/databases/neo4j.nix b/nixos/modules/services/databases/neo4j.nix index e9bdd146df4..2231d1a6f9d 100644 --- a/nixos/modules/services/databases/neo4j.nix +++ b/nixos/modules/services/databases/neo4j.nix @@ -57,7 +57,7 @@ let # HTTP Connector ${optionalString (cfg.http.enable) '' - dbms.connector.http.enabled=${boolToString cfg.https.enable} + dbms.connector.http.enabled=${boolToString cfg.http.enable} dbms.connector.http.listen_address=${cfg.http.listenAddress} dbms.connector.http.advertised_address=${cfg.http.listenAddress} ''} diff --git a/nixos/tests/neo4j.nix b/nixos/tests/neo4j.nix index 1386e6a48a4..0b57f5b2e03 100644 --- a/nixos/tests/neo4j.nix +++ b/nixos/tests/neo4j.nix @@ -6,8 +6,8 @@ import ./make-test-python.nix { { ... }: { - virtualisation.memorySize = 4096; - virtualisation.diskSize = 1024; + virtualisation.memorySize = 4096; + virtualisation.diskSize = 1024; services.neo4j.enable = true; # require tls certs to be available