fix: [update v1.5]

pull/519/head
Terrtia 2020-05-16 22:49:16 +02:00
parent c675cb2eaa
commit 399e379241
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 9 additions and 3 deletions

View File

@ -118,12 +118,18 @@ if __name__ == '__main__':
last_progress = progress
#flush browse importante pastes db
r_important_paste_2018.flushdb()
r_important_paste_2019.flushdb()
try:
r_important_paste_2018.flushdb()
except Exception:
pass
try:
r_important_paste_2019.flushdb()
except Exception:
pass
end = time.time()
print('Updating ARDB_Tags Done => {} paths: {} s'.format(index, end - start))
r_serv.sadd('ail:update_v1.5', 'tags')