惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
IT之家
IT之家
量子位
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
罗磊的独立博客
S
SegmentFault 最新的问题
博客园_首页
N
Netflix TechBlog - Medium
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
A
About on SuperTechFans
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
MyScale Blog
MyScale Blog

Discourse Meta - Latest posts

Horizon: High Context Topic Cards I'd like to ask what this file /var/www/discourse/vendor/data/RT_sRGB.icm is used for? Discourse to Markdown Plugin How to verify a subdomain (mysite.discourse.group) in Google Search Console? Reader Mode Publishing WordPress gallery posts on Discourse Discourse User Feedback New user filter by custom field and contact Interact with discourse from Python? Why we can't type the assignee in the search of a post to assign - home screen app Redis Flushall Category-toggled one-touch move post Some sort of variable to eliminate duplicate text? Why did this plugin replacement fail? Add user to list modal often appears above the mobile viewport sceen Creating/Editing a post on mobile: let's discuss the 2026 Discourse experience Wp-discourse feature request - do not show comments with specific tag? Are there any good Chinese plugins? Discourse ID and 2FA Discourse MCP is here! Sample Forum to See Admin Features? I am unable to register for a free Discourse site Wikipedia Lookup Add text for /login (like js.create_account.disclaimer for /signup) How can i set disable Markdown & Default to Rich Text What's the background image size for the Welcome Banner? How do I enable Associated Accounts with 2FA? Hamburger toggle Support <span data-attribute> in the rich editor Cannot disable read-only mode on Free Plan
Forum threads don't load from logged in users after reboo...
@InquilineKe · 2026-04-22 · via Discourse Meta - Latest posts

1

So I can barely post threads anymore when logged in.

When logged off, the threads work fine.

An upgrade failed mid-way and the forum went offline. we used codex to fix the upgrade and it worked again.

Hosted on Digital Ocean

Somehow it’s only laggy from my admin panel

Findings:

  • discourse-question-answer is stale upstream. The copy you’re running is from 2022-08-17.

  • The live site was not failing because of it. categories.json, latest.json, and / were all serving after recovery.

  • The actual issue was narrower: during rebuild/bootstrap, Chat’s one-time category seeding hit the plugin’s BasicCategorySerializer hook, and that hook called object.send(key) too aggressively.

    That produced Error seeding chat category - #<NoMethodError: undefined method ‘qa_enabled’ for an instance of Category> in the rebuild log.

What I changed:

  • Patched the running plugin serializer to use a safe fallback instead of blindly calling send.

  • Added the same compatibility patch to /var/discourse/containers/app.yml so future rebuilds re-apply it automatically.

  • Kept backups at /var/discourse/containers/app.yml.bak-2026-04-08 and /var/discourse/containers/app.yml.bak-2026-04-08-qa.

Validation:

One caveat:

  • I did not run another full rebuild after adding the persistent hook, because the live app is healthy and the equivalent patch was already applied successfully in the running container. The next

    rebuild should keep it, but that exact path hasn’t been re-executed yet.

If you want, I can do one more pass on whether that plugin should eventually be forked and pinned instead of cloned directly from the abandoned upstream repo.

2

That plugin is deprecated, you need to remove it.

3