zed-industries/zed · error · LoadError
Loading or resuming sessions is not supported by this agent.
Error message
Loading or resuming sessions is not supported by this agent.
What it means
Error "Loading or resuming sessions is not supported by this agent." thrown in zed-industries/zed.
Source
Thrown at crates/agent_ui/src/conversation_view.rs:1130
if connection.supports_load_session() {
connection.clone().load_session(
session_id,
project.clone(),
session_work_dirs,
title,
cx,
)
} else if connection.supports_resume_session() {
resumed_without_history = true;
connection.clone().resume_session(
session_id,
project.clone(),
session_work_dirs,
title,
cx,
)
} else {
Task::ready(Err(anyhow!(LoadError::Other(
"Loading or resuming sessions is not supported by this agent.".into()
))))
}
})
.log_err()
} else {
cx.update(|_, cx| {
connection
.clone()
.new_session(project.clone(), session_work_dirs, cx)
})
.log_err()
};
let Some(result) = result else {
return;
};
View on GitHub (pinned to bc538def45)
When it happens
Trigger: Thrown at crates/agent_ui/src/conversation_view.rs:1130 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of zed-industries/zed@bc538def45 (2026-08-16).
Data as JSON: /api/errors/730516e3d664a921.
Report an issue: GitHub.