ad-password-self-service/pwdselfservice/__init__.py

18 lines
519 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import sys
from django_redis import get_redis_connection
from utils.storage.kvstorage import KvStorage
import datetime
from traceback import format_exc
try:
redis_conn = get_redis_connection()
cache_storage = KvStorage(redis_conn)
cache_storage.set('redis_connection', str(datetime.datetime.now()))
redis_get = cache_storage.get('redis_connection')
except Exception as e:
print("请排查Redis配置错误信息如下")
print("Redis Exception: {}".format(format_exc()))
sys.exit(1)