We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03d1bfa commit b9d007eCopy full SHA for b9d007e
nativelink-scheduler/src/store_awaited_action_db.rs
@@ -533,9 +533,17 @@ where
533
return Ok(None);
534
}
535
536
+ self.store
537
+ .update_data(UpdateClientIdToOperationId {
538
+ client_operation_id: client_operation_id.clone(),
539
+ operation_id: operation_id.clone(),
540
+ })
541
+ .await
542
+ .err_tip(|| "In RedisAwaitedActionDb::try_subscribe")?;
543
+
544
Ok(Some(OperationSubscriber::new(
545
Some(client_operation_id.clone()),
- OperationIdToAwaitedAction(Cow::Owned(operation_id)),
546
+ OperationIdToAwaitedAction(Cow::Owned(operation_id.clone())),
547
Arc::downgrade(&self.store),
548
self.now_fn.clone(),
549
)))
0 commit comments