Skip to content
Snippets Groups Projects
Commit f654eaf5 authored by Manuel Kieweg's avatar Manuel Kieweg
Browse files

Update nucleus/controller.go

parent 44950ea7
No related branches found
No related tags found
1 merge request!90Develop
Pipeline #66415 canceled
...@@ -56,10 +56,10 @@ func (c *Core) AttachDatabase() { ...@@ -56,10 +56,10 @@ func (c *Core) AttachDatabase() {
// CreateSouthboundInterfaces initializes the controller with its supported SBIs // CreateSouthboundInterfaces initializes the controller with its supported SBIs
func (c *Core) CreateSouthboundInterfaces() error { func (c *Core) CreateSouthboundInterfaces() error {
if err := c.sbic.add(&AristaOC{}); err != nil { if err := c.sbic.add(&AristaOC{id: uuid.New()}); err != nil {
return err return err
} }
if err := c.sbic.add(&OpenConfig{}); err != nil { if err := c.sbic.add(&OpenConfig{id: uuid.New()}); err != nil {
return err return err
} }
return nil return nil
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment