X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=catalog%2Fsettings.py;h=c291c65788cd5620fdb6d31aecbadf395b7b24e4;hb=3d10bac5ec6b5394d32dc6ad3b0a7e6294ea6593;hp=df9d5f008444bbffa3e7a68291bcd4e5cbe7fa32;hpb=5d5d8f38910c9e776a3d38bbeea26e85a08ed177;p=modeling%2Fetsicatalog.git diff --git a/catalog/settings.py b/catalog/settings.py index df9d5f0..c291c65 100644 --- a/catalog/settings.py +++ b/catalog/settings.py @@ -16,13 +16,14 @@ import os import sys import platform -import catalog.pub.redisco +# import catalog.pub.redisco -from catalog.pub.config.config import REDIS_HOST, REDIS_PORT, REDIS_PASSWD +# from catalog.pub.config.config import REDIS_HOST, REDIS_PORT, REDIS_PASSWD from catalog.pub.config.config import DB_NAME, DB_IP, DB_USER, DB_PASSWD, DB_PORT from catalog.pub.config import config as pub_config from logging import config as log_config from onaplogging import monkey + monkey.patch_all() # Build paths inside the project like this: os.path.join(BASE_DIR, ...) @@ -123,7 +124,7 @@ DATABASES = { # 'NAME': ':memory:', # } -catalog.pub.redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0) +# catalog.pub.redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0) # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT) TIME_ZONE = 'UTC' @@ -161,11 +162,16 @@ if platform.system() == 'Windows' or 'test' in sys.argv: 'maxBytes': 1024 * 1024 * 50, 'backupCount': 5, }, + 'console': { + 'level': 'DEBUG', + 'class': 'logging.StreamHandler', + 'formatter': 'standard' + }, }, 'loggers': { 'catalog': { - 'handlers': ['catalog_handler'], + 'handlers': ['catalog_handler', 'console'], 'level': 'DEBUG', 'propagate': False }, @@ -197,8 +203,3 @@ if 'test' in sys.argv: TEST_OUTPUT_VERBOSE = True TEST_OUTPUT_DESCRIPTIONS = True TEST_OUTPUT_DIR = 'test-reports' - - import mock - from catalog.pub.utils import idutil - idutil.get_auto_id = mock.Mock() - idutil.get_auto_id.return_value = 1