Fix Jaime Buelta feed URL: stale WordPress.com edge cache - #635
Merged
Conversation
The configured URL
http://wrongsideofmemphis.wordpress.com/feed/atom/?tag=english+python
redirects three times to https://wrongsideofmemphis.com/feed/atom/?tag=english+python,
which WordPress.com has been serving from a pinned edge-cache entry
(x-nc: HIT, last-modified: Sat, 16 Aug 2025) for close to a year. The
newest post in that response is "Agents and Agency" from 2025-08-10, and
conditional requests against it return 304, so Channel.update() logs
"Feed unchanged" indefinitely and no new posts ever reach the planet.
The origin itself is fine -- the same URL with a cache-busting parameter
returns current content -- so only that one cache key is stuck.
Switch to the tag-permalink form, which serves fresh content and keeps
the identical english AND python filter. Verified to return the same
post set plus everything published since August 2025, and to still
exclude posts tagged english but not python. Validates as Atom 1.0.
The new URL also drops the redirect chain and starts on a fresh planet
cache key, discarding the stored etag/modified that was pinning fetches
to a 304.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Member
|
Thanks for the update! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
EDIT FEED
Hi, I need to edit my current feed url from
http://wrongsideofmemphis.wordpress.com/feed/atom/?tag=english+pythontohttps://wrongsideofmemphis.com/tag/english+python/feed/atom/The configured URL is HTTP, and then it redirects to an older cache. Changing it to HTTPS and setting the tags as part of the path should ensure the feed url is correct and up-to-date.
I checked the following required validations: (mark all 5 with [x])
Thanks in advance! 👍