ncarlier / feedpushr

A simple feed aggregator daemon with sugar on top.
GNU General Public License v3.0
334 stars 25 forks source link

Not all articles are being sent to output plugin? #52

Closed windware-ono closed 2 years ago

windware-ono commented 2 years ago

I've added an ATOM feed from https://status.digitalocean.com/history.atom and the feed screen is showing 25 as Aggregation success but in the output plugin that I've configured to send to Mattermost (I do not have any rate limiting in Mattermost) with http plugin, I only get the latest 2 article entries but should it not send the entire 25 entries to the output plugin once the feed and the output settings are added?

I've also added https://status.linode.com/history.atom and this one sent out 4 articles to the output plugin and another from https://www.cloudflarestatus.com/history.atom sent 9 articles to the output plugin and seems it's behaving inconsistently.

ncarlier commented 2 years ago

Only recent articles are sent. This duration is linked to the cache retention time: https://github.com/ncarlier/feedpushr/blob/master/etc/default/feedpushr.env#L16 In other words, if you have a 48-hour cache, only the last 2 days' articles will be sent.

windware-ono commented 2 years ago

Thank you for clarifying.