-
- Downloads
Merge branch...
Merge branch '163-removing-an-sbi-from-the-pnd-s-sbi-store-should-also-remove-the-devices-using-that-specific-sbi' into 'develop' Resolve "Removing an SBI from the PND's SBI store should also remove the devices using that specific SBI" See merge request !234
No related branches found
No related tags found
Showing
- go.mod 2 additions, 1 deletiongo.mod
- nucleus/principalNetworkDomain.go 11 additions, 4 deletionsnucleus/principalNetworkDomain.go
- nucleus/principalNetworkDomain_test.go 34 additions, 2 deletionsnucleus/principalNetworkDomain_test.go
- store/deviceStore.go 27 additions, 4 deletionsstore/deviceStore.go
- store/device_store_test.go 145 additions, 0 deletionsstore/device_store_test.go
... | @@ -8,6 +8,7 @@ require ( | ... | @@ -8,6 +8,7 @@ require ( |
code.fbi.h-da.de/danet/forks/google v0.0.0-20210709163519-47ee8958ef40 | code.fbi.h-da.de/danet/forks/google v0.0.0-20210709163519-47ee8958ef40 | ||
code.fbi.h-da.de/danet/yang-models v0.1.0 | code.fbi.h-da.de/danet/yang-models v0.1.0 | ||
github.com/docker/docker v20.10.11+incompatible | github.com/docker/docker v20.10.11+incompatible | ||
github.com/google/go-cmp v0.5.6 | |||
github.com/google/uuid v1.2.0 | github.com/google/uuid v1.2.0 | ||
github.com/openconfig/gnmi v0.0.0-20210914185457-51254b657b7d | github.com/openconfig/gnmi v0.0.0-20210914185457-51254b657b7d | ||
github.com/openconfig/goyang v0.3.1 | github.com/openconfig/goyang v0.3.1 | ||
... | @@ -29,7 +30,6 @@ require ( | ... | @@ -29,7 +30,6 @@ require ( |
github.com/fsnotify/fsnotify v1.5.1 // indirect | github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/golang/glog v1.0.0 // indirect | github.com/golang/glog v1.0.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | |||
github.com/hashicorp/hcl v1.0.0 // indirect | github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | github.com/kylelemons/godebug v1.1.0 // indirect | ||
... | @@ -49,6 +49,7 @@ require ( | ... | @@ -49,6 +49,7 @@ require ( |
golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9 // indirect | golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9 // indirect | ||
golang.org/x/sys v0.0.0-20211123173158-ef496fb156ab // indirect | golang.org/x/sys v0.0.0-20211123173158-ef496fb156ab // indirect | ||
golang.org/x/text v0.3.7 // indirect | golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | |||
google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1 // indirect | google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1 // indirect | ||
gopkg.in/ini.v1 v1.64.0 // indirect | gopkg.in/ini.v1 v1.64.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | gopkg.in/yaml.v2 v2.4.0 // indirect | ||
... | ... |
Please register or sign in to comment