reduce polling rate

This commit is contained in:
sadposter 2021-12-05 15:02:10 +00:00
parent f150d0a105
commit e55f1c58df
3 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@ const fetchAndUpdate = ({ store, credentials }) => {
const startFetching = ({ credentials, store }) => {
const boundFetchAndUpdate = () => fetchAndUpdate({ credentials, store })
boundFetchAndUpdate()
return promiseInterval(boundFetchAndUpdate, 10000)
return promiseInterval(boundFetchAndUpdate, 240000)
}
const followRequestFetcher = {