We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c55590c commit 3efe322Copy full SHA for 3efe322
crates/orchestrator/src/store/domains/task_store.rs
@@ -124,6 +124,9 @@ impl TaskStore {
124
// Clear the task list
125
let _: () = con.del(TASK_LIST_KEY).await?;
126
127
+ // Clear the task names index
128
+ let _: () = con.del(TASK_NAME_INDEX_KEY).await?;
129
+
130
// Notify observers synchronously
131
let observers = self.observers.lock().await.clone();
132
for task in tasks {
0 commit comments