Unread RSS Feed Limit of 200 on self-hosted install

Hi,

how can I lift the 200 unread RSS feed item on my self hosted installation?

Thank you

Change OVERRIDE_STORY_COUNT_MAX in settings.py to whatever number you’d like. It’s already in the settings.py file, just commented out.

1 Like

thank you for your comment,
i tried that already - but it still cuts at 200 - I also deleted the rss feed and re-added - but still happens.

I also tried to edit the models.py within rss_feeds directory,
where the def story_cutoff(self): i have changed every number on the following lines onto over 2000…

But still cut at 200!

Is there anything else what I could try?

EDIT: i am using an docker image. and I saw that inside the docker image, there is another config sitting there. I am not sure why there are two (outside docker+inside)
I tried adding the variable there too.
Maybe this helps.

I added this parameter to the docker-compose.yml

    environment: 
      - DOCKERBUILD=True
      - RUNWITHMAKEBUILD=${RUNWITHMAKEBUILD?Use the `make` command instead of docker 
       CLI}
      - OVERRIDE_STORY_COUNT_MAX=5000

I was wrong, it doesn’t work either. It does not rise above 500.

You have to uncomment it in settings.py:

# Uncomment below to force all feeds to store this many stories. Default is to cut 
# off at 25 stories for single subscriber non-premium feeds and 500 for popular feeds.
# OVERRIDE_STORY_COUNT_MAX = 1000

Hi!
I decided to do this and update all the files in one go. And now I can’t remember how I solved the problem with " custom domain" :laughing:


image

Please tell me, what am I doing wrong?

Once you set that setting, you’ll need to restart with make nb

I did it, nothing changes.

I tried all three methods.
None of them gave any result.

Try upgrading your account to premium archive. There’s a line in number_of_stories_to_store about premium archives:

        if self.archive_subscribers and self.archive_subscribers > 0 and not pre_archive:
            return 10000

To upgrade, use make shell:

>>> u = User.objects.all()[0]
>>> u.profile.activate_archive(never_expire=True)

Let’s see what happens))

In which file is this line?

image

image

And here there are no changes )

Or could it be that the display cannot show more than 500, but actually more?

The counter has reset to zero, and the feed continues.

Check the log when that feed updates and see where it’s being cut down to 500. It’s logged, that may shed some light on where it happens. Make sure there are new stories that come in on that fetch. The feed trimming only happens when new stories are fetched.

1 Like
newsblur_web  | Size 30x30 cm 
newsblur_web  | [Mar 23 19:44:41]    ---> [144: Reddit r/painting - 1/1/1] Checking Recognize the signature? / 7fdc7b3cce4be2f539525c1f7a6f5c9e4c3a7192
newsblur_web  | [Mar 23 19:44:41] Unchanged story (144:b708b8): 7fdc7b3cce4be2f539525c1f7a6f5c9e4c3a7192 / Recognize the signature? 
newsblur_web  | [Mar 23 19:44:41]    ---> [144: Reddit r/painting - 1/1/1] Checking I started experimenting with water and fabric paint on fabric, honestly, it’s so much softer than acrylic paint, which dries hard on the fabric. Any t... / 3ee5dbd50e4252f8042420538fac18726c89efae
newsblur_web  | [Mar 23 19:44:41] Unchanged story (144:3e9077): 3ee5dbd50e4252f8042420538fac18726c89efae / I started experimenting with water and fabric paint on fabric, honestly, it’s so much softer than acrylic paint, which dries hard on the fabric. Any t... 
newsblur_web  | [Mar 23 19:44:41]    ---> [144: Reddit r/painting - 1/1/1] Checking FRAMED bird original painting, i did / 743f8412b1a8d6d6e615ab2b77247d2fd89a63e1
newsblur_web  | [Mar 23 19:44:41] Unchanged story (144:a92bd2): 743f8412b1a8d6d6e615ab2b77247d2fd89a63e1 / FRAMED bird original painting, i did 
newsblur_web  | [Mar 23 19:44:41]    ---> [144: Reddit r/painting - 1/1/1] Parsed Feed: new=11 up=0 same=14 err=0 total=25
newsblur_web  | [Mar 23 19:44:41]    ---> [144: Reddit r/painting - 1/1/1] Counting subscribers from redis: t:1 a:1 p:1 ap:1 archive:1 pro:0 
newsblur_web  | [Mar 23 19:44:41]  ---> [Chrome] [0.07s] [VlaKor^] Auto-Loading 3 stories: ['144:ff45ff', '144:9ede13', '144:6caa23']
newsblur_web  | [Mar 23 19:44:43]    ---> [144: Reddit r/painting - 1/1/1] TIME: feed parse in 3.02s
newsblur_web  | [Mar 23 19:44:43]    ---> [144: Reddit r/painting - 1/1/1] Performing feed cleanup...
newsblur_web  | [Mar 23 19:44:46]    ---> [144: Reddit r/painting - 1/1/1] Done with feed cleanup. Took 2.93 sec.
newsblur_web  | [Mar 23 19:44:46]    ---> [144: Reddit r/painting - 1/1/1] TIME: unread count in 2.94s
newsblur_web  | [Mar 23 19:44:46]    ---> [144: Reddit r/painting - 1/1/1] Fetching page: https://old.reddit.com
newsblur_web  | [Mar 23 19:44:47]    ---> [144: Reddit r/painting - 1/1/1] Fetching icon: https://old.reddit.com
newsblur_web  | [Mar 23 19:44:48]    ---> [144: Reddit r/painting - 1/1/1] Icon difference: color:True (ff5917/ff5b16) data:False url:False notfound:False no-s3:False
node          | [2024-03-23 19:44:48]  ---> [VlaKor] Update on 144: feed:update - story:new_count:11
newsblur_web  | [Mar 23 19:44:48]    ---> [144: Reddit r/painting - 1/1/1] Published to 1 subscribers
newsblur_web  | [Mar 23 19:44:48]  X ---> [144: Reddit r/painting - 1/1/1] Processed in 8.69s (144) [ok]
newsblur_web  | [Mar 23 19:44:48]  ---> [------] [VlaKor^] Unread count (144): (0/494/0) to (0/500/0)
newsblur_web  | [Mar 23 19:44:48]  ---> [------] [VlaKor^] Computing scores: 144: Reddit r/painting - 1/1/1/1/0 3400 stories (2661667 bytes) (0/500/0)
newsblur_web  | [Mar 23 19:44:48]  ---> [Chrome] [0.06s] [VlaKor^] Refreshing 1+0 feeds  (0.01/0.01/0.03)
newsblur_web  | [Mar 23 19:44:48]  ---> [Chrome] [0.06s] [VlaKor^] Refreshing 1+0 feeds  (0.01/0.01/0.03)
newsblur_web  | [Mar 23 19:44:48]  ---> [Chrome] [0.11s] [VlaKor^] Loading feed: Reddit r/painting (newest/unread) 
newsblur_web  | [Mar 23 19:44:48]  ---> [Chrome] [0.06s] [VlaKor^] Updating unread count on: 144
newsblur_web  | [Mar 23 19:44:48]  ---> [Chrome] [0.04s] [VlaKor^] Updating unread count on: 144
newsblur_web  | [Mar 23 19:44:48]  ---> [Chrome] [0.08s] [VlaKor^] Loading feed: Reddit r/painting/p2 (newest/unread) 
newsblur_web  | [Mar 23 19:44:48]  ---> [Chrome] [0.06s] [VlaKor^] Loading feed: Reddit r/painting/p3 (newest/unread) 
node          | [2024-03-23 19:47:01]  ---> [VlaKor] Update on 32:story: feed:story:new - 32:da286b,1711207091
node          | [2024-03-23 19:47:06]  ---> [VlaKor] Update on 32: feed:update - story:new_count:1
newsblur_web  | [Mar 23 19:47:06]  ---> [Chrome] [0.28s] [VlaKor^] Updating unread count on: 32
newsblur_web  | [Mar 23 19:47:37]  ---> [Chrome] [0.05s] [VlaKor^] Auto-Loading river stories: p1 (0/0 stories, 0/0/1 feeds, newest/unread)

newsblur_web  | [Mar 23 20:04:52]  ---> [Chrome] [0.05s] [VlaKor^] Forcing refreshing feed: 144: Reddit r/painting - 1/1/1/1/0 3400 stories (2661667 bytes)
newsblur_web  | [Mar 23 20:04:53]  X ---> [144: Reddit r/painting - 1/1/1] Fetching feed (144), last update: 0:20:05.009468
newsblur_web  | [Mar 23 20:04:53]    ---> [144: Reddit r/painting - 1/1/1] Forcing fetch: http://rss.vlakor.ru/?action=display&bridge=RedditBridge&context=single&d=new&format=Mrss&r=painting&_=1118
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Feed fetch in 0.91s
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Found 25 guids, adding 5/25 guids from db
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking 25 new/updated against 25 stories
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Midtown Rain. Fresh off the easel. What do you think? / 52c1e7e8897f4cae4e43b7da1b08142d05d3c16b
node          | [2024-03-23 20:04:54]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:93e623,1711223831
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking “Sirens” - oil painting I did from the heart on linen 70x120cm / 752ab081bc3f3ba3bbc8afe7a32e442b03628558
newsblur_web  | [Mar 23 20:04:54]  ---> [Chrome] [0.04s] [VlaKor^] Auto-Loading 1 stories: ['144:93e623']
node          | [2024-03-23 20:04:54]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:878fdf,1711223512
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Have I captured the spirit of the mare? / 68d1943b6b54704a8f322b43737266fc487a4d68
node          | [2024-03-23 20:04:54]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:c4dd33,1711223490
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Soft Pastel Sunset Original Art by Treemallowart, 15x12 inch, 2024 / bd43e33233b6a5853894c2fdda7ffa82dfceec5d
node          | [2024-03-23 20:04:54]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:6279d6,1711223483
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Sitting through the storm / f8e85f876718ad9d6bcb904dd22a453dbc9bb325
node          | [2024-03-23 20:04:54]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:093db1,1711223408
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking The best guy to have ever happened to the world of music / d67125782db5c9433f23c9ba83f4b67f3addaa7e
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:f3435d): d67125782db5c9433f23c9ba83f4b67f3addaa7e / The best guy to have ever happened to the world of music 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Quick sketch, me , 2024 / e73c3093f9916cb499ba916d94664d54b014f5fe
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:ff45ff): e73c3093f9916cb499ba916d94664d54b014f5fe / Quick sketch, me , 2024 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Jar of flies album cover I painted / 9b5c8ac783b6d2aca0e49557c70e082cf1beb38c
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:9ede13): 9b5c8ac783b6d2aca0e49557c70e082cf1beb38c / Jar of flies album cover I painted 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Sketch / 33d4e3853691cbd0933fbba6dc80ee9f507e9e66
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:6caa23): 33d4e3853691cbd0933fbba6dc80ee9f507e9e66 / Sketch 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking how can I improve without getting better supplies? currently using acrylic paint on paper / 12a1c3dcf71c35c2f8349b3aa29064e26115ccae
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:8d5000): 12a1c3dcf71c35c2f8349b3aa29064e26115ccae / how can I improve without getting better supplies? currently using acrylic paint on paper 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Can you use posca pens to outline a painting on a window? / 6ebf6f9622a45918176a12f6bb4f36050de29861
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:f0a800): 6ebf6f9622a45918176a12f6bb4f36050de29861 / Can you use posca pens to outline a painting on a window? 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Chainsmokers, me, acrylic, 2024 / 74dffd224ac0f7e73568fd5d6983b721e39a38a0
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:abc599): 74dffd224ac0f7e73568fd5d6983b721e39a38a0 / Chainsmokers, me, acrylic, 2024 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Loose watercolor and ink landscape / 9af43ecdd850e01946fb849e914082930ec09880
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:081fe7): 9af43ecdd850e01946fb849e914082930ec09880 / Loose watercolor and ink landscape 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking 24x30 portrait oil painting / 38c60dcdf5fec609ab94413817f670038c17fffc
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:fd8320): 38c60dcdf5fec609ab94413817f670038c17fffc / 24x30 portrait oil painting 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking I Painted Mary / e6a6c5031041d4850f948e51a1064de5c0415d79
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:177331): e6a6c5031041d4850f948e51a1064de5c0415d79 / I Painted Mary 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Fisherman / f97730c0760741076e47885a3e12ebbace1692b1
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:f934d4): f97730c0760741076e47885a3e12ebbace1692b1 / Fisherman 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking the portrait of joker hope you guys will like my work / 9d4931e6d70ed9615d0f5d727f2957c9eb50cdc1
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:6828dd): 9d4931e6d70ed9615d0f5d727f2957c9eb50cdc1 / the portrait of joker hope you guys will like my work 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Face painting / cefdf07200530792659a58707a866923aea2d6af
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:03ebe1): cefdf07200530792659a58707a866923aea2d6af / Face painting 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Does anybody recognize this painting? / b0e252897e0f10ced453b06ed347612d6ce4498d
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:e7bc1b): b0e252897e0f10ced453b06ed347612d6ce4498d / Does anybody recognize this painting? 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Learning how to use brushes need tips and tricks. / f56ddf59db3d7d34e2747f292c64ae8723910463
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:e19078): f56ddf59db3d7d34e2747f292c64ae8723910463 / Learning how to use brushes need tips and tricks. 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking An electric box painting (toning the paper is not for me) / a8f15205e8105dea174f1c77294de3861bea9d2e
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:351248): a8f15205e8105dea174f1c77294de3861bea9d2e / An electric box painting (toning the paper is not for me) 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Odette- Alexis King, acrylic on canvas board, 2024 / 1646090cc6c7400f0a9bb869b3d062d699b12b3b
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:25c980): 1646090cc6c7400f0a9bb869b3d062d699b12b3b / Odette- Alexis King, acrylic on canvas board, 2024 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking 6x12" citrus trio oil painting / 4de0cf878be6469d34f03103173523dfa5122441
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:7009e6): 4de0cf878be6469d34f03103173523dfa5122441 / 6x12" citrus trio oil painting 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Tips for cleaning my palette? / e105719077a246348260edaacce95e1da521d02e
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:f9d7e3): e105719077a246348260edaacce95e1da521d02e / Tips for cleaning my palette? 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Checking Is there a name for this style of painting? / 00898fc442850a04ce4c7eddab5df1734d887461
newsblur_web  | [Mar 23 20:04:54] Unchanged story (144:3b0299): 00898fc442850a04ce4c7eddab5df1734d887461 / Is there a name for this style of painting? 
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Parsed Feed: new=5 up=0 same=20 err=0 total=25
newsblur_web  | [Mar 23 20:04:54]    ---> [144: Reddit r/painting - 1/1/1] Counting subscribers from redis: t:1 a:1 p:1 ap:1 archive:1 pro:0 
newsblur_web  | [Mar 23 20:04:56]    ---> [144: Reddit r/painting - 1/1/1] TIME: feed parse in 2.69s
newsblur_web  | [Mar 23 20:04:56]    ---> [144: Reddit r/painting - 1/1/1] Performing feed cleanup...
newsblur_web  | [Mar 23 20:04:59]    ---> [144: Reddit r/painting - 1/1/1] Done with feed cleanup. Took 2.90 sec.
newsblur_web  | [Mar 23 20:04:59]    ---> [144: Reddit r/painting - 1/1/1] TIME: unread count in 2.92s
newsblur_web  | [Mar 23 20:04:59]    ---> [144: Reddit r/painting - 1/1/1] Fetching page: https://old.reddit.com
newsblur_web  | [Mar 23 20:05:00]    ---> [144: Reddit r/painting - 1/1/1] Fetching icon: https://old.reddit.com
newsblur_web  | [Mar 23 20:05:01]    ---> [144: Reddit r/painting - 1/1/1] Icon difference: color:True (ff5b16/ff5a16) data:False url:False notfound:False no-s3:False
newsblur_web  | [Mar 23 20:05:01]    ---> [144: Reddit r/painting - 1/1/1] Published to 1 subscribers
node          | [2024-03-23 20:05:01]  ---> [VlaKor] Update on 144: feed:update - story:new_count:5
newsblur_web  | [Mar 23 20:05:01]  X ---> [144: Reddit r/painting - 1/1/1] Processed in 8.27s (144) [ok]
newsblur_web  | [Mar 23 20:05:01]  ---> [------] [VlaKor^] Unread count (144): (0/500/0) to (0/500/0)
newsblur_web  | [Mar 23 20:05:01]  ---> [------] [VlaKor^] Computing scores: 144: Reddit r/painting - 1/1/1/1/0 3405 stories (2665927 bytes) (0/500/0)
newsblur_web  | [Mar 23 20:05:01]  ---> [Chrome] [0.11s] [VlaKor^] Refreshing 1+0 feeds  (0.04/0.04/0.06)
newsblur_web  | [Mar 23 20:05:01]  ---> [Chrome] [0.07s] [VlaKor^] Refreshing 1+0 feeds  (0.02/0.02/0.04)
newsblur_web  | [Mar 23 20:05:02]  ---> [Chrome] [0.14s] [VlaKor^] Loading feed: Reddit r/painting (newest/unread) 
newsblur_web  | [Mar 23 20:05:02]  ---> [Chrome] [0.10s] [VlaKor^] Updating unread count on: 144
newsblur_web  | [Mar 23 20:05:02]  ---> [Chrome] [0.12s] [VlaKor^] Loading feed: Reddit r/painting/p2 (newest/unread) 
newsblur_web  | [Mar 23 20:05:02]  ---> [Chrome] [0.08s] [VlaKor^] Updating unread count on: 144
newsblur_web  | [Mar 23 20:05:02]  ---> [Chrome] [0.11s] [VlaKor^] Loading feed: Reddit r/painting/p3 (newest/unread) 

Well, there are new stories, but the counter does not increase.

newsblur_web  | [Mar 23 20:47:03]  ---> [Chrome] [0.05s] [VlaKor^] Forcing refreshing feed: 144: Reddit r/painting - 1/1/1/1/0 3405 stories (2665927 bytes)
newsblur_web  | [Mar 23 20:47:03]  X ---> [144: Reddit r/painting - 1/1/1] Fetching feed (144), last update: 0:41:55.688957
newsblur_web  | [Mar 23 20:47:03]    ---> [144: Reddit r/painting - 1/1/1] Forcing fetch: http://rss.vlakor.ru/?action=display&bridge=RedditBridge&context=single&d=new&format=Mrss&r=painting&_=9105
newsblur_web  | [Mar 23 20:47:05]    ---> [144: Reddit r/painting - 1/1/1] Feed fetch in 1.93s
newsblur_web  | [Mar 23 20:47:05]    ---> [144: Reddit r/painting - 1/1/1] Found 25 guids, adding 7/25 guids from db
newsblur_web  | [Mar 23 20:47:05]    ---> [144: Reddit r/painting - 1/1/1] Checking 25 new/updated against 25 stories
newsblur_web  | [Mar 23 20:47:05]    ---> [144: Reddit r/painting - 1/1/1] Checking Painting of appreciates column from 1870s / cf5dbb5acb77fe53964d353d867818b8c4f851fa
node          | [2024-03-23 20:47:05]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:445c5b,1711226387
newsblur_web  | [Mar 23 20:47:05]    ---> [144: Reddit r/painting - 1/1/1] Checking Purple sea. My oil painting. Oil in hardboard. / ffa832631cec795222701ea050755d96d98523d5
newsblur_web  | [Mar 23 20:47:06]  ---> [Chrome] [0.07s] [VlaKor^] Auto-Loading 1 stories: ['144:445c5b']
node          | [2024-03-23 20:47:06]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:abfdeb,1711226294
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Oil on canvas, 30x40 cm / 0e0e50491995bc4a687a3d27a3c56f527d1fef83
node          | [2024-03-23 20:47:06]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:85e7ba,1711226118
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Should I varnish my acrylic painting?  And what kind of varnish do you guys prefer? / 7b52bcfd8cca8e370d350501ad4a3c2d05c34a7a
node          | [2024-03-23 20:47:06]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:fc856f,1711225615
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Acrylic painting I did today of a Devon Rex cat. / fed8ebddb990a262518433e7ce489270932c8341
node          | [2024-03-23 20:47:06]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:54c45a,1711225373
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking First time on a art fair catalogue. / aceaf935b82c0cd8bf38b56af3bab6820570d00b
node          | [2024-03-23 20:47:06]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:601883,1711225255
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking I finished this one up today / b1f70db6b65aa580aa7c28aac37e2f6162192b16
node          | [2024-03-23 20:47:06]  ---> [VlaKor] Update on 144:story: feed:story:new - 144:93c9c7,1711224601
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Midtown Rain. Fresh off the easel. What do you think? / 52c1e7e8897f4cae4e43b7da1b08142d05d3c16b
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:93e623): 52c1e7e8897f4cae4e43b7da1b08142d05d3c16b / Midtown Rain. Fresh off the easel. What do you think? 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking “Sirens” - oil painting I did from the heart on linen 70x120cm / 752ab081bc3f3ba3bbc8afe7a32e442b03628558
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:878fdf): 752ab081bc3f3ba3bbc8afe7a32e442b03628558 / “Sirens” - oil painting I did from the heart on linen 70x120cm 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Have I captured the spirit of the mare? / 68d1943b6b54704a8f322b43737266fc487a4d68
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:c4dd33): 68d1943b6b54704a8f322b43737266fc487a4d68 / Have I captured the spirit of the mare? 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Soft Pastel Sunset Original Art by Treemallowart, 15x12 inch, 2024 / bd43e33233b6a5853894c2fdda7ffa82dfceec5d
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:6279d6): bd43e33233b6a5853894c2fdda7ffa82dfceec5d / Soft Pastel Sunset Original Art by Treemallowart, 15x12 inch, 2024 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Sitting through the storm / f8e85f876718ad9d6bcb904dd22a453dbc9bb325
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:093db1): f8e85f876718ad9d6bcb904dd22a453dbc9bb325 / Sitting through the storm 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking The best guy to have ever happened to the world of music / d67125782db5c9433f23c9ba83f4b67f3addaa7e
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:f3435d): d67125782db5c9433f23c9ba83f4b67f3addaa7e / The best guy to have ever happened to the world of music 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Quick sketch, me , 2024 / e73c3093f9916cb499ba916d94664d54b014f5fe
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:ff45ff): e73c3093f9916cb499ba916d94664d54b014f5fe / Quick sketch, me , 2024 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Jar of flies album cover I painted / 9b5c8ac783b6d2aca0e49557c70e082cf1beb38c
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:9ede13): 9b5c8ac783b6d2aca0e49557c70e082cf1beb38c / Jar of flies album cover I painted 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Sketch / 33d4e3853691cbd0933fbba6dc80ee9f507e9e66
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:6caa23): 33d4e3853691cbd0933fbba6dc80ee9f507e9e66 / Sketch 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking how can I improve without getting better supplies? currently using acrylic paint on paper / 12a1c3dcf71c35c2f8349b3aa29064e26115ccae
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:8d5000): 12a1c3dcf71c35c2f8349b3aa29064e26115ccae / how can I improve without getting better supplies? currently using acrylic paint on paper 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Can you use posca pens to outline a painting on a window? / 6ebf6f9622a45918176a12f6bb4f36050de29861
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:f0a800): 6ebf6f9622a45918176a12f6bb4f36050de29861 / Can you use posca pens to outline a painting on a window? 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Chainsmokers, me, acrylic, 2024 / 74dffd224ac0f7e73568fd5d6983b721e39a38a0
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:abc599): 74dffd224ac0f7e73568fd5d6983b721e39a38a0 / Chainsmokers, me, acrylic, 2024 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Loose watercolor and ink landscape / 9af43ecdd850e01946fb849e914082930ec09880
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:081fe7): 9af43ecdd850e01946fb849e914082930ec09880 / Loose watercolor and ink landscape 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking 24x30 portrait oil painting / 38c60dcdf5fec609ab94413817f670038c17fffc
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:fd8320): 38c60dcdf5fec609ab94413817f670038c17fffc / 24x30 portrait oil painting 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking I Painted Mary / e6a6c5031041d4850f948e51a1064de5c0415d79
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:177331): e6a6c5031041d4850f948e51a1064de5c0415d79 / I Painted Mary 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Fisherman / f97730c0760741076e47885a3e12ebbace1692b1
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:f934d4): f97730c0760741076e47885a3e12ebbace1692b1 / Fisherman 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking the portrait of joker hope you guys will like my work / 9d4931e6d70ed9615d0f5d727f2957c9eb50cdc1
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:6828dd): 9d4931e6d70ed9615d0f5d727f2957c9eb50cdc1 / the portrait of joker hope you guys will like my work 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Checking Face painting / cefdf07200530792659a58707a866923aea2d6af
newsblur_web  | [Mar 23 20:47:06] Unchanged story (144:03ebe1): cefdf07200530792659a58707a866923aea2d6af / Face painting 
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Parsed Feed: new=7 up=0 same=18 err=0 total=25
newsblur_web  | [Mar 23 20:47:06]    ---> [144: Reddit r/painting - 1/1/1] Counting subscribers from redis: t:1 a:1 p:1 ap:1 archive:1 pro:0 
newsblur_web  | [Mar 23 20:47:07]  ---> [Chrome] [0.04s] [VlaKor^] Auto-Loading 2 stories: ['144:abfdeb', '144:85e7ba']
newsblur_web  | [Mar 23 20:47:08]    ---> [144: Reddit r/painting - 1/1/1] TIME: feed parse in 2.88s
newsblur_web  | [Mar 23 20:47:08]    ---> [144: Reddit r/painting - 1/1/1] Performing feed cleanup...
newsblur_web  | [Mar 23 20:47:11]    ---> [144: Reddit r/painting - 1/1/1] Done with feed cleanup. Took 2.65 sec.
newsblur_web  | [Mar 23 20:47:11]    ---> [144: Reddit r/painting - 1/1/1] TIME: unread count in 2.66s
newsblur_web  | [Mar 23 20:47:11]    ---> [144: Reddit r/painting - 1/1/1] Fetching page: https://old.reddit.com
newsblur_web  | [Mar 23 20:47:12]    ---> [144: Reddit r/painting - 1/1/1] Fetching icon: https://old.reddit.com
newsblur_web  | [Mar 23 20:47:13]    ---> [144: Reddit r/painting - 1/1/1] Icon difference: color:True (ff5a16/ff5b16) data:False url:False notfound:False no-s3:False
node          | [2024-03-23 20:47:13]  ---> [VlaKor] Update on 144: feed:update - story:new_count:7
newsblur_web  | [Mar 23 20:47:13]    ---> [144: Reddit r/painting - 1/1/1] Published to 1 subscribers
newsblur_web  | [Mar 23 20:47:13]  X ---> [144: Reddit r/painting - 1/1/1] Processed in 9.62s (144) [ok]
newsblur_web  | [Mar 23 20:47:13]  ---> [------] [VlaKor^] Unread count (144): (0/500/0) to (0/500/0)
newsblur_web  | [Mar 23 20:47:13]  ---> [------] [VlaKor^] Computing scores: 144: Reddit r/painting - 1/1/1/1/0 3412 stories (2671823 bytes) (0/500/0)
newsblur_web  | [Mar 23 20:47:13]  ---> [Chrome] [0.05s] [VlaKor^] Refreshing 1+0 feeds  (0.01/0.01/0.03)
newsblur_web  | [Mar 23 20:47:13]  ---> [Chrome] [0.07s] [VlaKor^] Refreshing 1+0 feeds  (0.01/0.01/0.05)
newsblur_web  | [Mar 23 20:47:13]  ---> [Chrome] [0.17s] [VlaKor^] Loading feed: Reddit r/painting (newest/unread) 
newsblur_web  | [Mar 23 20:47:13]  ---> [Chrome] [0.07s] [VlaKor^] Updating unread count on: 144
newsblur_web  | [Mar 23 20:47:14]  ---> [Chrome] [0.06s] [VlaKor^] Updating unread count on: 144
newsblur_web  | [Mar 23 20:47:14]  ---> [Chrome] [0.08s] [VlaKor^] Loading feed: Reddit r/painting/p2 (newest/unread) 
newsblur_web  | [Mar 23 20:47:14]  ---> [Chrome] [0.07s] [VlaKor^] Loading feed: Reddit r/painting/p3 (newest/unread) (0.02/0.03/0.03/0.03)
newsblur_web  | [Mar 23 20:47:14]  ---> [Chrome] [0.08s] [VlaKor^] DB times /reader/feed/144: sql: 0.0130s mongo: 0.00651s redis: user:0.003085s story:0.000000s session:0.000000s pubsub:0.000000s


newsblur_web  | [Mar 24 09:20:12]  ---> [Chrome] [0.04s] [VlaKor^] Forcing refreshing feed: 150: ArtStation - Latest Artwork - 1/1/1/1/0 50 stories (94515 bytes)
newsblur_web  | [Mar 24 09:20:12]  X ---> [150: ArtStation - Latest Artwo] Fetching feed (150), last update: 0:31:26.689663
newsblur_web  | [Mar 24 09:20:12]    ---> [150: ArtStation - Latest Artwo] Forcing fetch: https://www.artstation.com/artwork.rss?sorting=latest&_=8543
newsblur_web  | [Mar 24 09:20:14]    ---> [150: ArtStation - Latest Artwo] Feed fetch in 2.25s
newsblur_web  | [Mar 24 09:20:14]    ---> [150: ArtStation - Latest Artwo] Found 50 guids, adding 50/50 guids from db
newsblur_web  | [Mar 24 09:20:14]    ---> [150: ArtStation - Latest Artwo] Checking 50 new/updated against 50 stories
newsblur_web  | [Mar 24 09:20:14]    ---> [150: ArtStation - Latest Artwo] Checking Mirror by Olga / https://www.artstation.com/artwork/bly3ek
node          | [2024-03-24 09:20:14]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:9809c6,1711271988
newsblur_web  | [Mar 24 09:20:14]    ---> [150: ArtStation - Latest Artwo] Checking Unreal Engine5.2 Automotive cinematic by 차주혁 / https://www.artstation.com/artwork/dKNx5X
newsblur_web  | [Mar 24 09:20:14]  ---> [Chrome] [0.05s] [VlaKor^] Auto-Loading 1 stories: ['150:9809c6']
node          | [2024-03-24 09:20:14]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:eaa8dd,1711271967
newsblur_web  | [Mar 24 09:20:14]    ---> [150: ArtStation - Latest Artwo] Checking "DUNE" by Mihail - Shishkin / https://www.artstation.com/artwork/8b8yqq
node          | [2024-03-24 09:20:15]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:1b89ca,1711271965
newsblur_web  | [Mar 24 09:20:15]    ---> [150: ArtStation - Latest Artwo] Checking 034 by Antonio V / https://www.artstation.com/artwork/1xqYv2
node          | [2024-03-24 09:20:15]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:633606,1711271957
newsblur_web  | [Mar 24 09:20:15]    ---> [150: ArtStation - Latest Artwo] Checking portrait study 1 by Rajesh  Biswas / https://www.artstation.com/artwork/KeGkWX
node          | [2024-03-24 09:20:15]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:b6c72b,1711271907
newsblur_web  | [Mar 24 09:20:15]    ---> [150: ArtStation - Latest Artwo] Checking G-class mercedes by Naruto / https://www.artstation.com/artwork/LRzv60
node          | [2024-03-24 09:20:15]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:a6981c,1711271883
newsblur_web  | [Mar 24 09:20:15]    ---> [150: ArtStation - Latest Artwo] Checking Li Dailin by Won Tian Jing / https://www.artstation.com/artwork/g06KJx
node          | [2024-03-24 09:20:15]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:f40df3,1711271849
newsblur_web  | [Mar 24 09:20:15]    ---> [150: ArtStation - Latest Artwo] Checking Cars of The Wasteland by Dreams in Frames / https://www.artstation.com/artwork/n0zb9X
newsblur_web  | [Mar 24 09:20:15]  ---> [Chrome] [0.07s] [VlaKor^] Auto-Loading 5 stories: ['150:eaa8dd', '150:1b89ca', '150:633606']...(+2)
node          | [2024-03-24 09:20:15]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:118e9e,1711271829
newsblur_web  | [Mar 24 09:20:15]    ---> [150: ArtStation - Latest Artwo] Checking Idea of Wednesday  by TIZIANO PELUSO / https://www.artstation.com/artwork/Xgl9ow
node          | [2024-03-24 09:20:16]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:0d4e1c,1711271822
newsblur_web  | [Mar 24 09:20:16]    ---> [150: ArtStation - Latest Artwo] Checking Cherry Blossom Kiriko 2024 by Liam Harrison / https://www.artstation.com/artwork/obEPvq
node          | [2024-03-24 09:20:16]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:a89b9a,1711271808
newsblur_web  | [Mar 24 09:20:16]    ---> [150: ArtStation - Latest Artwo] Checking Mass Psychosis - digital illustration by Núria Lladó / https://www.artstation.com/artwork/qerRGn
node          | [2024-03-24 09:20:16]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:a8af08,1711271786
newsblur_web  | [Mar 24 09:20:16]    ---> [150: ArtStation - Latest Artwo] Checking bedside by divya verma / https://www.artstation.com/artwork/xDnxX4
newsblur_web  | [Mar 24 09:20:16]  ---> [Chrome] [0.06s] [VlaKor^] Auto-Loading 1 stories: ['150:f40df3']
node          | [2024-03-24 09:20:16]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:d07516,1711271736
newsblur_web  | [Mar 24 09:20:16]    ---> [150: ArtStation - Latest Artwo] Checking knight by pandanyang / https://www.artstation.com/artwork/49ner2
node          | [2024-03-24 09:20:16]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:f89cef,1711271709
newsblur_web  | [Mar 24 09:20:16]    ---> [150: ArtStation - Latest Artwo] Checking lighting showreel by Chetan Gotawde / https://www.artstation.com/artwork/39XPGD
node          | [2024-03-24 09:20:17]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:f44798,1711271677
newsblur_web  | [Mar 24 09:20:17]    ---> [150: ArtStation - Latest Artwo] Checking Funk Generation by Uriel Bromberg / https://www.artstation.com/artwork/aowr50
node          | [2024-03-24 09:20:17]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:c99930,1711271662
newsblur_web  | [Mar 24 09:20:17]    ---> [150: ArtStation - Latest Artwo] Checking All-terrain crawler “ГТ-СМ” by Aleksey Mokeew / https://www.artstation.com/artwork/rJ35r5
node          | [2024-03-24 09:20:17]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:2e7820,1711271653
newsblur_web  | [Mar 24 09:20:17]    ---> [150: ArtStation - Latest Artwo] Checking Realistic Boat by Teja Avinash Dasari / https://www.artstation.com/artwork/YB1EY6
node          | [2024-03-24 09:20:17]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:c99d95,1711271599
newsblur_web  | [Mar 24 09:20:17]    ---> [150: ArtStation - Latest Artwo] Checking légende by gautier cusso / https://www.artstation.com/artwork/AlmKb5
node          | [2024-03-24 09:20:17]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:1d7b56,1711271580
newsblur_web  | [Mar 24 09:20:17]    ---> [150: ArtStation - Latest Artwo] Checking Call of Duty : Modern Warfare 3 | Das Haus by Michael Robertson / https://www.artstation.com/artwork/aowrP8
node          | [2024-03-24 09:20:18]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:e5aad9,1711271579
newsblur_web  | [Mar 24 09:20:18]    ---> [150: ArtStation - Latest Artwo] Checking <WatcH>—[Manjummel Boys] 2024 FULLMOVIE Free 480p, 720p & 1080p HD Filmyzilla by WATCH—[Manjummel Boys] 2024 FULLMOVIE Free 480p, 720p & 1080p HD Filmyzilla / https://www.artstation.com/artwork/Jv2zKn
node          | [2024-03-24 09:20:18]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:9b20f2,1711271504
newsblur_web  | [Mar 24 09:20:19]    ---> [150: ArtStation - Latest Artwo] Checking [Manjummel Boys] 2024 FULLMOVIE Free 480p, 720p & 1080p HD Filmyzilla by WATCH—[Manjummel Boys] 2024 FULLMOVIE Free 480p, 720p & 1080p HD Filmyzilla / https://www.artstation.com/artwork/g06Xmx
node          | [2024-03-24 09:20:19]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:b2867f,1711271502
newsblur_web  | [Mar 24 09:20:19]    ---> [150: ArtStation - Latest Artwo] Checking {DOWNloaD}—[Manjummel Boys] 2024 FULLMOVIE Free 480p, 720p & 1080p HD Filmyzilla by DownLoad —[Manjummel Boys] 2024 FULLMOVIE Free 480p, 720p & 1080p HD Filmyzilla / https://www.artstation.com/artwork/VJn9xb
node          | [2024-03-24 09:20:20]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:4ccdc0,1711271499
newsblur_web  | [Mar 24 09:20:20]    ---> [150: ArtStation - Latest Artwo] Checking {NetFliX}—[Manjummel Boys] 2024 FULLMOVIE Free 480p, 720p & 1080p HD Filmyzilla by DownLoad —[Manjummel Boys] 2024 FULLMOVIE Free 480p, 720p & 1080p HD Filmyzilla / https://www.artstation.com/artwork/BXNQP6
node          | [2024-03-24 09:20:20]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:3be220,1711271498
newsblur_web  | [Mar 24 09:20:20]    ---> [150: ArtStation - Latest Artwo] Checking hareport by Olivier Thill / https://www.artstation.com/artwork/04x89e
node          | [2024-03-24 09:20:21]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:32c5e1,1711271445
newsblur_web  | [Mar 24 09:20:21]    ---> [150: ArtStation - Latest Artwo] Checking Stylised car 3 2024 by Liam Harrison / https://www.artstation.com/artwork/kQv16z
node          | [2024-03-24 09:20:21]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:c59635,1711271429
newsblur_web  | [Mar 24 09:20:21]    ---> [150: ArtStation - Latest Artwo] Checking hareport by Olivier Thill / https://www.artstation.com/artwork/Za89nR
node          | [2024-03-24 09:20:21]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:bf52b0,1711271402
newsblur_web  | [Mar 24 09:20:21]    ---> [150: ArtStation - Latest Artwo] Checking Caesar concept by riiji / https://www.artstation.com/artwork/GeQDy1
node          | [2024-03-24 09:20:21]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:b680c4,1711271383
newsblur_web  | [Mar 24 09:20:21]    ---> [150: ArtStation - Latest Artwo] Checking Strawberry model  by Hani debona / https://www.artstation.com/artwork/zPloLQ
node          | [2024-03-24 09:20:21]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:43c7bd,1711271381
newsblur_web  | [Mar 24 09:20:21]    ---> [150: ArtStation - Latest Artwo] Checking Hormagaunt Horde by Nikola Matkovic / https://www.artstation.com/artwork/29ob2B
node          | [2024-03-24 09:20:21]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:156c7a,1711271380
newsblur_web  | [Mar 24 09:20:21]    ---> [150: ArtStation - Latest Artwo] Checking Mirk Christmas by Ryan Drewett / https://www.artstation.com/artwork/vDo3qD
node          | [2024-03-24 09:20:22]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:a47f31,1711271369
newsblur_web  | [Mar 24 09:20:22]    ---> [150: ArtStation - Latest Artwo] Checking Primal by Dreams in Frames / https://www.artstation.com/artwork/9Ed2oN
node          | [2024-03-24 09:20:22]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:756d3c,1711271352
newsblur_web  | [Mar 24 09:20:22]    ---> [150: ArtStation - Latest Artwo] Checking Kratos by Mr. Dront / https://www.artstation.com/artwork/QX4k2r
node          | [2024-03-24 09:20:22]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:1db0ad,1711271339
newsblur_web  | [Mar 24 09:20:22]    ---> [150: ArtStation - Latest Artwo] Checking Béjar City Hall by kannyx / https://www.artstation.com/artwork/WBL9q2
node          | [2024-03-24 09:20:22]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:ad02de,1711271331
newsblur_web  | [Mar 24 09:20:22]    ---> [150: ArtStation - Latest Artwo] Checking Quiz game by Katerina Mark / https://www.artstation.com/artwork/6Nl54n
node          | [2024-03-24 09:20:22]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:edda6f,1711271329
newsblur_web  | [Mar 24 09:20:22]    ---> [150: ArtStation - Latest Artwo] Checking A380-800 by Shleepy / https://www.artstation.com/artwork/DvDKwn
node          | [2024-03-24 09:20:22]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:e8e499,1711271305
newsblur_web  | [Mar 24 09:20:22]    ---> [150: ArtStation - Latest Artwo] Checking Bart Simpson by Mayerok / https://www.artstation.com/artwork/NyOYv1
node          | [2024-03-24 09:20:23]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:7f8d69,1711271274
newsblur_web  | [Mar 24 09:20:23]    ---> [150: ArtStation - Latest Artwo] Checking Municipality of Edirne by kannyx / https://www.artstation.com/artwork/yDLqV8
node          | [2024-03-24 09:20:23]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:5fabce,1711271220
newsblur_web  | [Mar 24 09:20:23]    ---> [150: ArtStation - Latest Artwo] Checking oscar by Olivier Thill / https://www.artstation.com/artwork/w0X4Vg
node          | [2024-03-24 09:20:23]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:ac18b1,1711271205
newsblur_web  | [Mar 24 09:20:23]    ---> [150: ArtStation - Latest Artwo] Checking The Arctic Huntress by Atho Sanger / https://www.artstation.com/artwork/RyxO4v
node          | [2024-03-24 09:20:23]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:ea7071,1711271197
newsblur_web  | [Mar 24 09:20:23]    ---> [150: ArtStation - Latest Artwo] Checking Stalker anomaly by Oleh Krempovskyi / https://www.artstation.com/artwork/elKqNb
node          | [2024-03-24 09:20:23]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:89199a,1711271190
newsblur_web  | [Mar 24 09:20:23]    ---> [150: ArtStation - Latest Artwo] Checking oscar by Olivier Thill / https://www.artstation.com/artwork/PX3kr3
node          | [2024-03-24 09:20:23]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:c2bc4a,1711271158
newsblur_web  | [Mar 24 09:20:23]    ---> [150: ArtStation - Latest Artwo] Checking Egyptian pawn project  by Elyoss NATT / https://www.artstation.com/artwork/lDYnXe
node          | [2024-03-24 09:20:23]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:3af34c,1711271158
newsblur_web  | [Mar 24 09:20:23]    ---> [150: ArtStation - Latest Artwo] Checking 《云海》 by dien / https://www.artstation.com/artwork/bly3wk
node          | [2024-03-24 09:20:24]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:b16ac1,1711271151
newsblur_web  | [Mar 24 09:20:24]    ---> [150: ArtStation - Latest Artwo] Checking Trisicari by Si J / https://www.artstation.com/artwork/dKNxmX
node          | [2024-03-24 09:20:24]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:eb37d7,1711271119
newsblur_web  | [Mar 24 09:20:24]    ---> [150: ArtStation - Latest Artwo] Checking oscar by Olivier Thill / https://www.artstation.com/artwork/8b8yXq
node          | [2024-03-24 09:20:24]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:4a87fb,1711271119
newsblur_web  | [Mar 24 09:20:24]    ---> [150: ArtStation - Latest Artwo] Checking way to home by Keat JIa / https://www.artstation.com/artwork/lD28ve
node          | [2024-03-24 09:20:24]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:b5d2e6,1711271059
newsblur_web  | [Mar 24 09:20:24]    ---> [150: ArtStation - Latest Artwo] Checking Seychelles State House by kannyx / https://www.artstation.com/artwork/LRzvQ0
node          | [2024-03-24 09:20:24]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:fe12eb,1711271040
newsblur_web  | [Mar 24 09:20:24]    ---> [150: ArtStation - Latest Artwo] Checking National Assembly of the Republic of Bulgaria by kannyx / https://www.artstation.com/artwork/qerRVn
node          | [2024-03-24 09:20:24]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:e5b66a,1711270980
newsblur_web  | [Mar 24 09:20:24]    ---> [150: ArtStation - Latest Artwo] Checking Anime Character Design by Draxphics 3DStudio / https://www.artstation.com/artwork/39XP3D
node          | [2024-03-24 09:20:25]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:4e102a,1711270894
newsblur_web  | [Mar 24 09:20:25]    ---> [150: ArtStation - Latest Artwo] Checking Batmantoto: Situs Agen Togel Toto Online & Slot Gacor Terbaik No 1 by RedSparks / https://www.artstation.com/artwork/xDnxV4
node          | [2024-03-24 09:20:25]  ---> [VlaKor] Update on 150:story: feed:story:new - 150:ef2547,1711270886
newsblur_web  | [Mar 24 09:20:25]    ---> [150: ArtStation - Latest Artwo] Parsed Feed: new=50 up=0 same=0 err=0 total=50
newsblur_web  | [Mar 24 09:20:25]    ---> [150: ArtStation - Latest Artwo] Counting subscribers from redis: t:1 a:1 p:1 ap:1 archive:1 pro:0 
newsblur_web  | [Mar 24 09:20:26]    ---> [150: ArtStation - Latest Artwo] TIME: feed parse in 12.0s
newsblur_web  | [Mar 24 09:20:26]    ---> [150: ArtStation - Latest Artwo] Performing feed cleanup...
newsblur_web  | [Mar 24 09:20:27]    ---> [150: ArtStation - Latest Artwo] Scheduling feed fetch immediately...
newsblur_web  | [Mar 24 09:20:27]  ---> [Chrome] [0.04s] [VlaKor^] Forcing refreshing feed: 150: ArtStation - Latest Artwork - 1/1/1/1/0 50 stories (94515 bytes)
newsblur_web  | [Mar 24 09:20:27]  X ---> [150: ArtStation - Latest Artwo] Fetching feed (150), last update: 0:31:41.954996
newsblur_web  | [Mar 24 09:20:27]    ---> [150: ArtStation - Latest Artwo] Forcing fetch: https://www.artstation.com/artwork.rss?sorting=latest&_=5278
newsblur_web  | [Mar 24 09:20:27]    ---> [150: ArtStation - Latest Artwo] Done with feed cleanup. Took 1.02 sec.
newsblur_web  | [Mar 24 09:20:27]    ---> [150: ArtStation - Latest Artwo] TIME: unread count in 1.04s
newsblur_web  | [Mar 24 09:20:27]    ---> [150: ArtStation - Latest Artwo] Fetching page: https://www.artstation.com/
newsblur_web  | [Mar 24 09:20:27]    ---> [150: ArtStation - Latest Artwo] Fetching icon: https://www.artstation.com/
newsblur_web  | [Mar 24 09:20:29]    ---> [150: ArtStation - Latest Artwo] Icon difference: color:True (3b545e/3a535d) data:False url:False notfound:False no-s3:False
node          | [2024-03-24 09:20:29]  ---> [VlaKor] Update on 150: feed:update - story:new_count:50
newsblur_web  | [Mar 24 09:20:29]    ---> [150: ArtStation - Latest Artwo] Published to 1 subscribers
newsblur_web  | [Mar 24 09:20:29]  X ---> [150: ArtStation - Latest Artwo] Processed in 17.2s (150) [ok]
newsblur_web  | [Mar 24 09:20:30]    ---> [150: ArtStation - Latest Artwo] Feed fetch in 2.71s
newsblur_web  | [Mar 24 09:20:30]    ---> [150: ArtStation - Latest Artwo] Found 50 guids, adding 0/50 guids from db
newsblur_web  | [Mar 24 09:20:30]    ---> [150: ArtStation - Latest Artwo] Checking 50 new/updated against 50 stories
newsblur_web  | [Mar 24 09:20:30]    ---> [150: ArtStation - Latest Artwo] Checking Mirror by Olga / https://www.artstation.com/artwork/bly3ek
newsblur_web  | [Mar 24 09:20:30]  ---> [------] [VlaKor^] Unread count (150/trained): (0/500/0) to (0/500/0)
newsblur_web  | [Mar 24 09:20:30] Unchanged story (150:9809c6): https://www.artstation.com/artwork/bly3ek / Mirror by Olga 
newsblur_web  | [Mar 24 09:20:30]    ---> [150: ArtStation - Latest Artwo] Checking Unreal Engine5.2 Automotive cinematic by 차주혁 / https://www.artstation.com/artwork/dKNx5X
newsblur_web  | [Mar 24 09:20:30]  ---> [------] [VlaKor^] Computing scores: 150: ArtStation - Latest Artwork - 1/1/1/1/0 1273 stories (2696033 bytes) (0/500/0)

Here’s the same thing from ArtStation

Any idea why this is happening?