Remove TimeoutError import
This commit is contained in:
parent
9694d7da7f
commit
e0ae801b24
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ import sys
|
||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
import redis
|
import redis
|
||||||
from redis.exceptions import ConnectionError, TimeoutError
|
from redis.exceptions import ConnectionError
|
||||||
|
|
||||||
from flask import abort, Flask, render_template, request
|
from flask import abort, Flask, render_template, request
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ def check_redis_alive(fn):
|
||||||
def inner(*args, **kwargs):
|
def inner(*args, **kwargs):
|
||||||
try:
|
try:
|
||||||
redis_client.ping()
|
redis_client.ping()
|
||||||
except (ConnectionError, TimeoutError) as e:
|
except ConnectionError as e:
|
||||||
print(e)
|
print(e)
|
||||||
if fn.__name__ == "main":
|
if fn.__name__ == "main":
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
Loading…
Reference in a new issue