forked from rDrama/rDrama
1
0
Fork 0

handle error

master
Aevann 2023-09-06 17:25:01 +03:00
parent 47f099bf36
commit f97552b076
1 changed files with 8 additions and 1 deletions

View File

@ -7,6 +7,7 @@ from collections import Counter
import gevent
import qrcode
from sqlalchemy.orm import aliased, load_only
from sqlalchemy.exc import IntegrityError
from files.classes import *
from files.classes.leaderboard import Leaderboard
@ -33,8 +34,14 @@ def _add_profile_view(vid, uid):
if view: view.last_view_utc = int(time.time())
else: view = ViewerRelationship(viewer_id=vid, user_id=uid)
db.add(view)
try:
db.commit()
except IntegrityError as e:
db.rollback()
if not str(e).startswith('(psycopg2.errors.UniqueViolation) duplicate key value violates unique constraint "'):
print(STARS + e + STARS, flush=True)
db.commit()
db.close()
stdout.flush()