Remove unused config

This commit is contained in:
TeoV
2020-02-29 11:51:24 +02:00
committed by Dan Christian Bogos
parent f9303bcd63
commit 39d41bb6db
2 changed files with 0 additions and 94 deletions

View File

@@ -145,7 +145,6 @@ func TestApierIT(t *testing.T) {
switch *dbType {
case utils.MetaInternal:
t.SkipNow() // need tests redesign
// APIerSv1ConfigDIR = "apier_internal"
case utils.MetaMySQL:
APIerSv1ConfigDIR = "apier_mysql"
case utils.MetaMongo:

View File

@@ -1,93 +0,0 @@
{
// CGRateS Configuration file
//
// Used in apier_local_tests
// Starts rater, cdrs and mediator connecting over internal channel
"general": {
"log_level": 7,
"poster_attempts": 1,
},
"listen": {
"rpc_json": ":2012", // RPC JSON listening address
"rpc_gob": ":2013", // RPC GOB listening address
"http": ":2080", // HTTP listening address
},
"data_db": {
"db_type": "*internal",
},
"stor_db": {
"db_type": "*internal",
},
"rals": {
"enabled": true, // enable Rater service: <true|false>
},
"schedulers": {
"enabled": true, // start Scheduler service: <true|false>
},
"cdrs": {
"enabled": true, // start the CDR Server service: <true|false>
"chargers_conns":["*internal"],
"rals_conns": ["*internal"],
},
"attributes": { // Attribute service
"enabled": true, // starts Attribute service: <true|false>.
},
"resources": {
"enabled": true,
"store_interval": "-1",
},
"stats": {
"enabled": true,
"store_interval": "-1",
},
"thresholds": {
"enabled": true,
"store_interval": "-1",
},
"chargers": {
"enabled": true,
},
"suppliers": {
"enabled": true,
},
"cdre": {
"*default": {
"export_path": "/tmp/cgrates/cdr/cdrexport/csv", // path where the exported CDRs will be placed
}
},
"apiers": {
"enabled": true,
"scheduler_conns": ["*internal"],
},
}