mirror of https://gitlab.com/bashrc2/epicyon
Longer period between hashtag swarm update
parent
95c709c7ca
commit
52697e5437
3
inbox.py
3
inbox.py
|
@ -179,10 +179,11 @@ def _update_cached_hashtag_swarm(base_dir: str, nickname: str, domain: str,
|
||||||
curr_date = datetime.datetime.utcnow()
|
curr_date = datetime.datetime.utcnow()
|
||||||
time_diff = curr_date - modified_date
|
time_diff = curr_date - modified_date
|
||||||
diff_mins = int(time_diff.total_seconds() / 60)
|
diff_mins = int(time_diff.total_seconds() / 60)
|
||||||
if diff_mins < 10:
|
if diff_mins < 30:
|
||||||
# was saved recently, so don't save again
|
# was saved recently, so don't save again
|
||||||
# This avoids too much disk I/O
|
# This avoids too much disk I/O
|
||||||
save_swarm = False
|
save_swarm = False
|
||||||
|
print('Not updating hashtag swarm')
|
||||||
else:
|
else:
|
||||||
print('Updating cached hashtag swarm, last changed ' +
|
print('Updating cached hashtag swarm, last changed ' +
|
||||||
str(diff_mins) + ' minutes ago')
|
str(diff_mins) + ' minutes ago')
|
||||||
|
|
Loading…
Reference in New Issue