Description
When starting the hepsub-cgrates project using the command nodejs cgrates.js, the API server starts, but immediately logs an error related to the registration API.
Expected Behavior
The API server should start without any errors, and it should successfully register with the backend service.
Actual Behavior
The API server starts and logs the following output and error:
API Server started 18088
REGISTER API ERROR 400 Bad Request
Configuration
Here is the relevant portion of the config.js file:
var config = {
backend: 'http://localhost:9080/api/v3/agent/subscribe',
token: 'gMjKsDIEnoBYuRlGJJLRyTHZZBNIvbcMHDVgcetKWvfbptajLyAMqWUOIHCZJmwcucSDRsILYmZfXaDY',
service: {
"uuid": Math.random().toString(36).substring(7),
"host":"127.0.0.1",
"port": 18088,
"protocol": "http",
"path": "/get",
"type": "cdr",
"ttl": 300,
"node": "cgrates",
"gid": 10
},
debug: true,
cgrates: {
"url": "http://192.168.0.115:2080/jsonrpc",
"tenant": "cgrates.org",
"hep_field": "callid"
}
};
Environment
Please advise on any steps that can be taken to resolve this error.
Thank you!
Description
When starting the
hepsub-cgratesproject using the commandnodejs cgrates.js, the API server starts, but immediately logs an error related to the registration API.Expected Behavior
The API server should start without any errors, and it should successfully register with the backend service.
Actual Behavior
The API server starts and logs the following output and error:
Configuration
Here is the relevant portion of the
config.jsfile:Environment
Please advise on any steps that can be taken to resolve this error.
Thank you!