Integration tests in services

This commit is contained in:
andronache
2021-01-13 14:17:44 +02:00
committed by Dan Christian Bogos
parent 641a99e8ac
commit e5f3961a53
5 changed files with 9 additions and 6 deletions

View File

@@ -247,6 +247,8 @@ func (srvMngr *ServiceManager) handleReload() {
go srvMngr.reloadService(utils.DispatcherH)
case <-srvMngr.GetConfig().GetReloadChan(config.HTTP_JSN):
go srvMngr.reloadService(utils.GlobalVarS)
case <-srvMngr.GetConfig().GetReloadChan(config.AccountSCfgJson):
go srvMngr.reloadService(utils.AccountS)
}
// handle RPC server
}