diff options
author | Eric Multanen <eric.w.multanen@intel.com> | 2020-04-23 12:55:38 -0700 |
---|---|---|
committer | Eric Multanen <eric.w.multanen@intel.com> | 2020-06-03 17:17:21 -0700 |
commit | e80f462ab1621090dd9cf7a2c648eb168aaafa5e (patch) | |
tree | a94b336dcb30929756077e80dd8ed581b1455088 /src/orchestrator/pkg/module | |
parent | 8e7a20777f2100324526a34b4b6c943b512df0fb (diff) |
Add grpc contextupdate client call to orchestrator
Adds a contextupdate client function that can
be invoked for any action or placement controller
to process intents for that controller.
Adds the corresponding server side handling for
the ovnaction controller.
Issue-ID: MULTICLOUD-1019
Signed-off-by: Eric Multanen <eric.w.multanen@intel.com>
Change-Id: Ifdfc99e522288a530735bc4c1402d45449f6d057
Diffstat (limited to 'src/orchestrator/pkg/module')
-rw-r--r-- | src/orchestrator/pkg/module/deployment_intent_groups.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/orchestrator/pkg/module/deployment_intent_groups.go b/src/orchestrator/pkg/module/deployment_intent_groups.go index cfbf53e2..16a14c7b 100644 --- a/src/orchestrator/pkg/module/deployment_intent_groups.go +++ b/src/orchestrator/pkg/module/deployment_intent_groups.go @@ -18,9 +18,10 @@ package module import ( "encoding/json" - "github.com/onap/multicloud-k8s/src/orchestrator/pkg/infra/db" "reflect" + "github.com/onap/multicloud-k8s/src/orchestrator/pkg/infra/db" + pkgerrors "github.com/pkg/errors" ) |