Huy Dang
Huy Dang
Hi @gsaslis , I write this [script](https://gist.github.com/ddhuy/a8ca68fde778e2d904d32d18a38c62ee) to compile & run restcomm. Hope it will help in your case. Just need to type a couple of commands: ``` . RC...
Hi @gsaslis , The restcomm version is **8.3.0**. I built and deployed it following the guidelines here [How to build Restcomm-Connect from source](http://documentation.telestax.com/connect/configuration/How%20to%20build%20Restcomm-Connect%20from%20source.html#build-from-source) & [Starting Restcomm-Connect](http://documentation.telestax.com/connect/configuration/How%20to%20build%20Restcomm-Connect%20from%20source.html#build-from-source). My MySQL version is...
The sql mode **ONLY_FULL_GROUP_BY** was added in MySQL version 5.7.5 and later. Removing it will help solve the issue. IMO we should take a note in installation documents about this.
@gsaslis Yes, your understanding is correctly. In getDailyCalls `GROUP BY` clause, we group the records by 4 fields: `start_date`, `end_date`, `account_sid`, `api_version` while in the `SELECT` list we select more...
Hi @gsaslis and @leftyb , here is the piece of code I mentioned. Please take a look at [`getDailyCalls`](https://gist.github.com/ddhuy/c90b680587257d1ebdb757612e190381#file-usage-xml)
Hi @gsaslis Sorry for late response. I have tried again with new fresh installation of Linux OS, MySql & Restcomm. But seem the problem still happens to me. Following is...
Hi @gsaslis , In current design, each time we update account status, we also update status of its sub-accounts. Please check this piece of code [switchAccountStatusTree](https://gist.github.com/ddhuy/44a4384259826b33b54761128fa0af9e) I have one concern...
@gsaslis thank you for your comment. I understand your point. But with current implementation in our source code, the sub-account status is updated according to parent account status. Please have...
@gsaslis , Please can you help review this fix
@gsaslis , Thanks for your comments. I have just add new tests for the new functionality and fix some old test problems.