From 7f3070d2a758297b2566df9df09cd33bcf9fb92a Mon Sep 17 00:00:00 2001 From: DanB Date: Wed, 17 Oct 2018 19:32:03 +0200 Subject: [PATCH] Better error log in case of starting SupplierS with no internal RALs connection --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 96165c153..c3210797d 100755 --- a/config/config.go +++ b/config/config.go @@ -648,7 +648,7 @@ func (self *CGRConfig) checkConfigSanity() error { if self.supplierSCfg != nil && self.supplierSCfg.Enabled { for _, connCfg := range self.supplierSCfg.RALsConns { if connCfg.Address != utils.MetaInternal { - return errors.New("Only <*internal> connectivity allowed in SupplierS for now") + return errors.New("Only <*internal> RALs connectivity allowed in SupplierS for now") } if connCfg.Address == utils.MetaInternal && !self.RALsEnabled { return errors.New("RALs not enabled but requested by SupplierS component.")