Remove print

This commit is contained in:
Rebecca Law
2016-11-29 16:03:58 +00:00
parent c437615661
commit e38625632c

View File

@@ -12,7 +12,6 @@ def check_service_message_limit(key_type, service):
if key_type != KEY_TYPE_TEST:
cache_key = redis.daily_limit_cache_key(service.id)
service_stats = redis_store.get(cache_key)
print(service_stats)
if not service_stats:
service_stats = services_dao.fetch_todays_total_message_count(service.id)
redis_store.set(cache_key, service_stats, ex=3600)