commit to the DB more frequently

This commit is contained in:
Lynne Megido 2018-11-17 15:16:28 +10:00
rodzic ab43960e61
commit 3de328299a
Podpisane przez: lynnesbian
ID klucza GPG: FB7B970303ACE499
2 zmienionych plików z 2 dodań i 1 usunięć

1
run.py
Wyświetl plik

@ -59,6 +59,7 @@ for row in dc.fetchall():
if tbc > int(cfg['max_time_between_checks']):
tbc = cfg['max_time_between_checks']
c.execute("UPDATE data SET last_check = %s, time_between_checks = %s", (t, tbc))
db.commit()
db.commit()

2
web.py
Wyświetl plik

@ -176,7 +176,7 @@ def do_login():
pw_hashed = hashlib.sha256(pw_in.encode('utf-8')).digest()
acct = request.form['acct']
session['username'] = re.match("^@([^@]+)@", acct).group(1)
session['instance'] = "https://{}".format(re.search("@([^@]+)$", acct).group(1))
session['instance'] = "https://{}".format(re.search("@([^@]+)$", acct).group(1)) #todo: this occasionally gets "https://@username@instan.ce"
dc.execute("SELECT * FROM data WHERE username = %s AND instance = %s", (session['username'], session['instance']))
data = dc.fetchone()
db.close()