Remove ipdb statement

This commit is contained in:
Andrew Brookins 2021-10-20 17:30:16 -07:00
parent f9e388c901
commit ab85e46c8b

View file

@ -13,10 +13,6 @@ def get_redis_connection(**kwargs) -> redis.Redis:
# If someone passed in a 'url' parameter, or specified a REDIS_OM_URL # If someone passed in a 'url' parameter, or specified a REDIS_OM_URL
# environment variable, we'll create the Redis client from the URL. # environment variable, we'll create the Redis client from the URL.
url = kwargs.pop("url", URL) url = kwargs.pop("url", URL)
if not url:
import ipdb
ipdb.set_trace()
if url: if url:
return redis.from_url(url, **kwargs) return redis.from_url(url, **kwargs)