chore: remove campo is_using_sse nao usado do ChatPollerHandle
O campo estava duplicado - ChatRuntime ja tem seu proprio is_using_sse. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
28598cb04d
commit
cb6add1a4a
1 changed files with 0 additions and 2 deletions
|
|
@ -418,7 +418,6 @@ struct SseUpdateEvent {
|
||||||
struct ChatPollerHandle {
|
struct ChatPollerHandle {
|
||||||
stop_flag: Arc<AtomicBool>,
|
stop_flag: Arc<AtomicBool>,
|
||||||
join_handle: JoinHandle<()>,
|
join_handle: JoinHandle<()>,
|
||||||
is_using_sse: Arc<AtomicBool>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ChatPollerHandle {
|
impl ChatPollerHandle {
|
||||||
|
|
@ -545,7 +544,6 @@ impl ChatRuntime {
|
||||||
*guard = Some(ChatPollerHandle {
|
*guard = Some(ChatPollerHandle {
|
||||||
stop_flag,
|
stop_flag,
|
||||||
join_handle,
|
join_handle,
|
||||||
is_using_sse: self.is_using_sse.clone(),
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue