Commit b2aa20b7 authored by 张彦钊's avatar 张彦钊

delete print

parent 51439953
......@@ -180,7 +180,6 @@ def update_sql_dairy_queue(queue_name, diary_id,device_id, city_id):
db='doris_prod')
else:
db = pymysql.connect(host=LOCAL_HOST, port=3306, user='work',passwd='workwork', db='doris_test')
print("bd")
cursor = db.cursor()
id_str = str(diary_id[0])
for i in range(1, len(diary_id)):
......@@ -189,9 +188,7 @@ def update_sql_dairy_queue(queue_name, diary_id,device_id, city_id):
sql = "update device_diary_queue set {}='{}' where device_id = '{}' and city_id = '{}'".format\
(queue_name,id_str,device_id, city_id)
cursor.execute(sql)
print("1bd")
db.commit()
print("2bd")
db.close()
over = time.time()
print("写入日记队列耗时{}秒".format(over-begin))
......
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