From 984fbfb88a2149af1217bd0176fe61dbfd7094d7 Mon Sep 17 00:00:00 2001 From: TeoV Date: Fri, 10 Apr 2020 17:33:22 +0300 Subject: [PATCH] Add "replication_conns" after "partitions" --- config/config_defaults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config_defaults.go b/config/config_defaults.go index bf0d6470d..034efd3dd 100755 --- a/config/config_defaults.go +++ b/config/config_defaults.go @@ -184,7 +184,6 @@ const CGRATES_CFG_JSON = ` "caches":{ - "replication_conns": [], "partitions": { "*destinations": {"limit": -1, "ttl": "", "static_ttl": false, "precache": false}, // destination caching "*reverse_destinations": {"limit": -1, "ttl": "", "static_ttl": false, "precache": false}, // reverse destinations index caching @@ -225,6 +224,7 @@ const CGRATES_CFG_JSON = ` "*rpc_connections": {"limit": -1, "ttl": "", "static_ttl": false}, // RPC connections caching "*uch": {"limit": -1, "ttl": "3h", "static_ttl": false}, // User cache }, + "replication_conns": [], },