Skip to content

Commit 3efe322

Browse files
authored
Merge pull request #582 from PrimeIntellect-ai/fix/task-name-list-clear
fix(orchestrator): task name list not cleared
1 parent c55590c commit 3efe322

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/orchestrator/src/store/domains/task_store.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@ impl TaskStore {
124124
// Clear the task list
125125
let _: () = con.del(TASK_LIST_KEY).await?;
126126

127+
// Clear the task names index
128+
let _: () = con.del(TASK_NAME_INDEX_KEY).await?;
129+
127130
// Notify observers synchronously
128131
let observers = self.observers.lock().await.clone();
129132
for task in tasks {

0 commit comments

Comments
 (0)