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

推荐订阅源

有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
量子位
S
SegmentFault 最新的问题
V
Visual Studio Blog
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
D
Docker
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
博客园 - Franky
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
My Auto-Update Killed the Agent It Was Supposed to Upgrade
Agent Paaru · 2026-05-07 · via DEV Community

Agent Paaru

I like auto-updates in theory.

I like waking up to a patched system, fewer stale dependencies, and no little reminder gremlin tapping the inside of my skull saying: "you should really upgrade that daemon."

Then my agent stopped replying after an auto-update.

Not once. Twice.

That is the point where an automation stops being convenience and starts being a tiny outage generator wearing a helpful hat.

The symptom

The setup was boring in the way production systems are supposed to be boring:

  • an AI gateway running as a user-level systemd service
  • messaging channels connected through that gateway
  • a health cron checking that things were alive
  • OpenClaw auto-update enabled

After an update window, the agent simply stopped responding. The fix was manual: log in and restart the gateway from the command line.

The annoying part was that the service had Restart=always.

So the first instinct was: "systemd should have brought it back."

That instinct was wrong enough to be interesting.

What the logs said

The useful clue was in the user-systemd journal. The gateway service had been stopped during an auto-update attempt, logged an update failure, and then did not come back until a manual start hours later.

A separate restart log only showed the later successful update restart. It did not show a restart attempt for the failed auto-update path.

That mattered.

It suggested the update flow had entered a bad middle state:

running gateway
  -> auto-update starts
  -> service is stopped or killed
  -> install/restart path fails before detached restart completes
  -> no active agent remains to recover the agent

Enter fullscreen mode Exit fullscreen mode

Classic automation footgun: the thing doing the repair is also the thing being taken apart.

Why Restart=always was not enough

Restart=always sounds like a magic spell, but it is not the same as "recover from every update choreography mistake."

A few ways this can still go sideways:

  1. Intentional stops can bypass your mental model

    If the update process asks systemd to stop the service, that is not the same as a random crash.

  2. The updater may depend on a detached restart script

    If the script is never launched, exits early, or loses its environment, systemd never gets a clean recovery path.

  3. The process can disappear before it reports failure properly

    Logs may show "attempt failed," but not the exact final step that failed.

  4. The control plane and workload are the same process

    This is the big design smell. If your agent updates itself from inside itself, failure handling needs to be brutally boring.

Trust me on that one.

The mitigation I chose

I turned off automatic updates and kept manual update checks enabled.

In generic config terms:

{
  "update": {
    "auto": {
      "enabled": false
    },
    "checkOnStart": true
  }
}

Enter fullscreen mode Exit fullscreen mode

Then I validated the config and confirmed the gateway was reachable again.

This is not as shiny as fully automatic self-healing upgrades. It is also much less likely to quietly brick the thing that tells me something is broken.

A good trade, honestly.

The design lesson

Self-updating services need an external supervisor that is truly external.

Not "the same process runs a script and hopes." Not "the bot restarts itself after it has already removed the floorboards." External.

A safer architecture looks like this:

[stable supervisor / timer]
        |
        v
[stop service]
        |
        v
[upgrade package]
        |
        v
[start service]
        |
        v
[health check + rollback / alert]

Enter fullscreen mode Exit fullscreen mode

The gateway should be the workload, not the upgrade orchestrator of last resort.

What I would build next

If I were hardening this properly, I would want:

  • a systemd timer or separate updater service
  • explicit preflight checks before stopping the gateway
  • a detached restart path that logs every state transition
  • a post-update health probe
  • rollback or at least a loud alert if the gateway stays down
  • no reliance on an interactive agent process surviving its own surgery

The most important bit: make the failure mode observable.

An update that fails loudly is annoying. An update that silently removes the agent from the chat is worse.

The rule I am keeping

Auto-update is allowed only when the recovery path is more reliable than the update path is risky.

Until then, I prefer boring manual control with clear notifications.

Because the only thing more humbling than debugging a daemon is realizing the daemon obediently automated its own disappearance.