X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_policy_module%2Fcore%2Fconfig.py;h=94dec9872ee3b252b6eb70d384ffe7a52feb2c3b;hb=refs%2Fchanges%2F54%2F6654%2F4;hp=dab409b13ac5abd27784e6573fbd44ce176a7584;hpb=7f11ecff803667fb5cd0e79389eece83ddc96c86;p=osm%2FPOL.git diff --git a/osm_policy_module/core/config.py b/osm_policy_module/core/config.py index dab409b..94dec98 100644 --- a/osm_policy_module/core/config.py +++ b/osm_policy_module/core/config.py @@ -65,8 +65,9 @@ class Config(object): CfgParam('OSMPOL_DATABASE_DRIVER', "mongo", six.text_type), CfgParam('OSMPOL_DATABASE_HOST', "mongo", six.text_type), CfgParam('OSMPOL_DATABASE_PORT', 27017, int), - CfgParam('OSMPOL_SQL_DATABASE_URI', "sqlite:///mon_sqlite.db", six.text_type), + CfgParam('OSMPOL_SQL_DATABASE_URI', "sqlite:///policy_module.db", six.text_type), CfgParam('OSMPOL_LOG_LEVEL', "INFO", six.text_type), + CfgParam('OSMPOL_KAFKA_LOG_LEVEL', "WARN", six.text_type), ] _config_dict = {cfg.key: cfg for cfg in _configuration}