diff options
author | Dan Timoney <dtimoney@att.com> | 2021-03-02 15:43:00 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-03-02 15:43:00 -0500 |
commit | 9b8d012fa55719b436d69789e2d2f08174610297 (patch) | |
tree | ea07911ee6327efd5cec11d0e26faab472b7096b /ms/command-executor | |
parent | a831c362689ff850f6ed7fff3c57f4b4037b55d8 (diff) |
Fix import error in commandexecutor
Fixed bad import statement, which causes command executor to fail
on startup.
Issue-ID: CCSDK-3197
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: I645562fcce9164a52a45a33f61019b9bb2c5a150
Diffstat (limited to 'ms/command-executor')
-rw-r--r-- | ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py b/ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py index b5c2c26ff..6aaf46ba1 100644 --- a/ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py +++ b/ms/command-executor/src/main/python/proto/CommandExecutor_pb2_grpc.py @@ -1,7 +1,7 @@ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! import grpc -import CommandExecutor_pb2 as CommandExecutor__pb2 +import proto.CommandExecutor_pb2 as CommandExecutor__pb2 class CommandExecutorServiceStub(object): |