fix issues running from source
Change-Id: I512eebfd0c1531d22073a2389073fb1bcf1d0961
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/osm_openvim/openvimd.cfg b/osm_openvim/openvimd.cfg
index 9641938..732512b 100644
--- a/osm_openvim/openvimd.cfg
+++ b/osm_openvim/openvimd.cfg
@@ -133,7 +133,7 @@
#logging parameters # DEBUG, INFO, WARNING, ERROR, CRITICAL
-log_level: ERROR
+log_level: DEBUG
log_level_db: DEBUG
log_level_of: DEBUG
diff --git a/osm_openvim/ovim.py b/osm_openvim/ovim.py
index f253912..a0c380d 100755
--- a/osm_openvim/ovim.py
+++ b/osm_openvim/ovim.py
@@ -22,16 +22,10 @@
# contact with: nfvlabs@tid.es
##
-'''
+"""
This is the thread for the http server North API.
Two thread will be launched, with normal and administrative permissions.
-'''
-
-__author__ = "Alfonso Tierno, Leonardo Mirabal"
-__date__ = "$06-Feb-2017 12:07:15$"
-__version__ = "0.5.10-r526"
-version_date = "Apr 2017"
-database_version = "0.17" #expected database schema version
+"""
import threading
import vim_db
@@ -45,6 +39,11 @@
import openflow_thread as oft
import openflow_conn
+__author__ = "Alfonso Tierno, Leonardo Mirabal"
+__date__ = "$06-Feb-2017 12:07:15$"
+__version__ = "0.5.11-r527"
+version_date = "Apr 2017"
+database_version = "0.17" #expected database schema version
HTTP_Bad_Request = 400
HTTP_Unauthorized = 401