diff options
author | Rajamohan Raj <rajamohan.raj@intel.com> | 2020-05-19 21:51:37 +0000 |
---|---|---|
committer | Eric Multanen <eric.w.multanen@intel.com> | 2020-05-20 21:08:42 -0700 |
commit | 55df44a00598b127a0243094042e9eaa526f2071 (patch) | |
tree | 5e89062367ad9b02c90b4afef386ce171daa7c16 /src/ncm/pkg/module/cluster.go | |
parent | eb3eac7c732dc02947868343d70851d89e8ff207 (diff) |
Change NCM for upstream change in orchestrator
Issue-ID: MULTICLOUD-1064
Signed-off-by: Rajamohan Raj <rajamohan.raj@intel.com>
Change-Id: Ie4a914adbb20f6227dcba9c380a9d416f5274ad3
Diffstat (limited to 'src/ncm/pkg/module/cluster.go')
-rw-r--r-- | src/ncm/pkg/module/cluster.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ncm/pkg/module/cluster.go b/src/ncm/pkg/module/cluster.go index e0464c96..2397a091 100644 --- a/src/ncm/pkg/module/cluster.go +++ b/src/ncm/pkg/module/cluster.go @@ -512,7 +512,7 @@ func (v *ClusterClient) ApplyNetworkIntents(provider, name string) error { // add the resources to the app context for _, resource := range resources { - _, err = context.AddResource(clusterhandle, resource.name, []byte(resource.value)) + _, err = context.AddResource(clusterhandle, resource.name, resource.value) if err != nil { cleanuperr := context.DeleteCompositeApp() if cleanuperr != nil { |