Merge fixes

This commit is contained in:
adi
2022-09-22 16:07:16 +03:00
committed by Dan Christian Bogos
parent 15fbc25351
commit 67163a1ff5
22 changed files with 224 additions and 123 deletions

View File

@@ -20,6 +20,7 @@
"*dispatcher_loads": {"limit": -1, "replicate": true}
},
"replication_conns": ["cacheReplication"],
"remote_conns": ["cacheReplication"],
},

View File

@@ -19,9 +19,6 @@
"db_port": 6379,
"db_name": "11",
},
"caches":{
"partitions": {

View File

@@ -19,13 +19,21 @@
"db_type": "*internal",
},
"caches":{
"remote_conns": ["gob_cache"], // the conns that are queried when the items are not found in cache
},
"rpc_conns": {
"conn1": {
"strategy": "*first",
"conns": [{"address": "127.0.0.1:6012", "transport":"*json"}],
},
"gob_cache": {
"strategy": "*first",
"conns": [
{"address": "127.0.0.1:6013", "transport":"*gob"},
],
},
},
"attributes": {

View File

@@ -24,12 +24,32 @@
"dispatchers":{
"enabled": true,
"opts": {
"*dispatcherS": [
{
"Tenant": "cgrates.org",
"FilterIDs": ["*string:~*opts.*subsys:*dispatchers"],
"Value": false,
},
],
},
},
"caches":{
"remote_conns": ["gob_cache"], // the conns that are queried when the items are not found in cache
},
"admins": {
"enabled": true,
},
"rpc_conns": {
"gob_cache": {
"strategy": "*first",
"conns": [
{"address": "127.0.0.1:2013", "transport":"*gob"},
],
},
},
}

View File

@@ -18,23 +18,22 @@
"db_name": "10", // data_db database name to connect to
},
/*
"dispatchers":{
"enabled": true,
"opts": { //
// "*dispatcherS": [
// {
// "Tenant": "cgrates.org",
// "FilterIDs": [],
// "Value": true,
// },
// ],
},
"opts": {
"*dispatcherS": [
{
"Tenant": "cgrates.org",
"FilterIDs": ["*string:~*opts.*subsys:*dispatchers"],
"Value": false,
},
],
},
},
*/
"caches":{
//"remote_conns": ["*internal"], // the conns that are queried when the items are not found in cache
//"remote_conns": ["gob_cache"], // the conns that are queried when the items are not found in cache
},
@@ -51,6 +50,11 @@
{"address": "127.0.0.1:4012", "transport":"*json"},
],
},
/* "gob_cache": {
"conns": [
{"address": "127.0.0.1:4012", "transport":"*gob"},
],
}, */
},
}