Loading go-apps/meep-vis/sbi/vis-sbi.go +6 −6 Original line number Diff line number Diff line Loading @@ -29,7 +29,7 @@ import ( sam "github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-swagger-api-mgr" ) const moduleName string = "meep-wais-sbi" const moduleName string = "meep-vis-sbi" var metricStore *met.MetricStore var redisAddr string = "meep-redis-master.default.svc.cluster.local:6379" Loading @@ -50,7 +50,7 @@ type SbiCfg struct { CleanUpCb func() } type WaisSbi struct { type VisSbi struct { moduleName string sandboxName string mepName string Loading @@ -70,16 +70,16 @@ type WaisSbi struct { mutex sync.Mutex } var sbi *WaisSbi var sbi *VisSbi // Init - WAI Service SBI initialization // Init - V2XI Service SBI initialization func Init(cfg SbiCfg) (err error) { // Create new SBI instance if sbi != nil { sbi = nil } sbi = new(WaisSbi) sbi = new(VisSbi) sbi.moduleName = cfg.ModuleName sbi.sandboxName = cfg.SandboxName sbi.mepName = cfg.MepName Loading Loading @@ -146,7 +146,7 @@ func Init(cfg SbiCfg) (err error) { return nil } // Run - MEEP WAIS execution // Run - MEEP VIS execution func Run() (err error) { // Start Swagger API Manager (provider) Loading Loading
go-apps/meep-vis/sbi/vis-sbi.go +6 −6 Original line number Diff line number Diff line Loading @@ -29,7 +29,7 @@ import ( sam "github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-swagger-api-mgr" ) const moduleName string = "meep-wais-sbi" const moduleName string = "meep-vis-sbi" var metricStore *met.MetricStore var redisAddr string = "meep-redis-master.default.svc.cluster.local:6379" Loading @@ -50,7 +50,7 @@ type SbiCfg struct { CleanUpCb func() } type WaisSbi struct { type VisSbi struct { moduleName string sandboxName string mepName string Loading @@ -70,16 +70,16 @@ type WaisSbi struct { mutex sync.Mutex } var sbi *WaisSbi var sbi *VisSbi // Init - WAI Service SBI initialization // Init - V2XI Service SBI initialization func Init(cfg SbiCfg) (err error) { // Create new SBI instance if sbi != nil { sbi = nil } sbi = new(WaisSbi) sbi = new(VisSbi) sbi.moduleName = cfg.ModuleName sbi.sandboxName = cfg.SandboxName sbi.mepName = cfg.MepName Loading Loading @@ -146,7 +146,7 @@ func Init(cfg SbiCfg) (err error) { return nil } // Run - MEEP WAIS execution // Run - MEEP VIS execution func Run() (err error) { // Start Swagger API Manager (provider) Loading