Commit 7269c9ec authored by lixiaofang's avatar lixiaofang

add

parent e54150f5
This diff is collapsed.
...@@ -14,13 +14,14 @@ if __name__ == "__main__": ...@@ -14,13 +14,14 @@ if __name__ == "__main__":
redis_client = set_reply_to_redis() redis_client = set_reply_to_redis()
logging.info("get now -----munite:%s" % now) logging.info("get now -----munite:%s" % now)
have_reply1 = redis_client.hget(redis_key1, str(now - 5)) have_reply1 = redis_client.hget(redis_key1, str(now - 5))
logging.info("get now -----have_reply1:%s" % have_reply1) if have_reply1:
result = json.loads(str(have_reply1, encoding="utf-8")) logging.info("get now -----have_reply1:%s" % have_reply1)
if result: result = json.loads(str(have_reply1, encoding="utf-8"))
for item in result: if result:
cook = login() for item in result:
reply2(cook, item["topic_id"], item["answer"], item["id"]) cook = login()
redis_client.hdel(redis_key1,str(now-5)) reply2(cook, item["topic_id"], item["answer"], item["id"])
redis_client.hdel(redis_key1, str(now - 5))
except: except:
logging.error("catch exception,main:%s" % traceback.format_exc()) logging.error("catch exception,main:%s" % traceback.format_exc())
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment