Suppress the 'Agent Thread Started' event when initializing the panel (#38535)

Release Notes:

- N/A
This commit is contained in:
Mikayla Maki
2025-09-19 22:55:32 +00:00
committed by GitHub
parent 89520ea221
commit 8df616e28b
2 changed files with 22 additions and 1 deletions
+8 -1
View File
@@ -408,6 +408,7 @@ impl ActiveView {
pub struct AgentPanel {
workspace: WeakEntity<Workspace>,
loading: bool,
user_store: Entity<UserStore>,
project: Entity<Project>,
fs: Arc<dyn Fs>,
@@ -513,6 +514,7 @@ impl AgentPanel {
cx,
)
});
panel.as_mut(cx).loading = true;
if let Some(serialized_panel) = serialized_panel {
panel.update(cx, |panel, cx| {
panel.width = serialized_panel.width.map(|w| w.round());
@@ -527,6 +529,7 @@ impl AgentPanel {
panel.new_agent_thread(AgentType::NativeAgent, window, cx);
});
}
panel.as_mut(cx).loading = false;
panel
})?;
@@ -726,6 +729,7 @@ impl AgentPanel {
acp_history,
acp_history_store,
selected_agent: AgentType::default(),
loading: false,
}
}
@@ -857,6 +861,7 @@ impl AgentPanel {
agent: crate::ExternalAgent,
}
let loading = self.loading;
let history = self.acp_history_store.clone();
cx.spawn_in(window, async move |this, cx| {
@@ -898,7 +903,9 @@ impl AgentPanel {
}
};
telemetry::event!("Agent Thread Started", agent = ext_agent.name());
if !loading {
telemetry::event!("Agent Thread Started", agent = ext_agent.name());
}
let server = ext_agent.server(fs, history);
+14
View File
@@ -2401,6 +2401,20 @@ impl<'a, T: 'static> std::borrow::BorrowMut<T> for GpuiBorrow<'a, T> {
}
}
impl<'a, T: 'static> std::ops::Deref for GpuiBorrow<'a, T> {
type Target = T;
fn deref(&self) -> &Self::Target {
self.inner.as_ref().unwrap()
}
}
impl<'a, T: 'static> std::ops::DerefMut for GpuiBorrow<'a, T> {
fn deref_mut(&mut self) -> &mut T {
self.inner.as_mut().unwrap()
}
}
impl<'a, T> Drop for GpuiBorrow<'a, T> {
fn drop(&mut self) {
let lease = self.inner.take().unwrap();