cleaning up old grpc functionality

This commit is contained in:
afeiszli
2021-08-09 17:42:32 -04:00
parent 70493754b2
commit 7e8af20b64
5 changed files with 3 additions and 124 deletions

View File

@@ -362,7 +362,7 @@ func GetNetworks() ([]string, error) {
return networks, err
}
for _, f := range files {
if strings.Contains(f.Name(), "netconfig-") && !strings.Contains(f.Name(), "global-001") {
if strings.Contains(f.Name(), "netconfig-") {
networkname := stringAfter(f.Name(), "netconfig-")
networks = append(networks, networkname)
}