Bug 559 adding encrypt/decrypt methods
Fixing pytest and unittest. Adding to devops stage test
Change-Id: Idbeaa82dec736c4a8b2d2a26bd39aeecbc49b901
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/osm_common/msgbase.py b/osm_common/msgbase.py
index 6e6dec0..5ba8f71 100644
--- a/osm_common/msgbase.py
+++ b/osm_common/msgbase.py
@@ -50,13 +50,14 @@
pass
def write(self, topic, key, msg):
- raise MsgException("Method 'write' not implemented")
+ raise MsgException("Method 'write' not implemented", http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
def read(self, topic):
- raise MsgException("Method 'read' not implemented")
+ raise MsgException("Method 'read' not implemented", http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
async def aiowrite(self, topic, key, msg, loop=None):
- raise MsgException("Method 'aiowrite' not implemented")
+ raise MsgException("Method 'aiowrite' not implemented", http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
async def aioread(self, topic, loop=None, callback=None, aiocallback=None, **kwargs):
- raise MsgException("Method 'aioread' not implemented")
+ raise MsgException("Method 'aioread' not implemented", http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
+