Skip to content

Commit 555ac65

Browse files
committed
fix get on start_subscription_request
1 parent 20053eb commit 555ac65

File tree

1 file changed

+3
-1
lines changed
  • crates/core/src/operations

1 file changed

+3
-1
lines changed

crates/core/src/operations/get.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,9 @@ impl Operation for GetOp {
10021002
if !op_manager.ring.is_seeding_contract(&key) {
10031003
tracing::debug!(tx = %id, %key, "Marking contract as seeded");
10041004
op_manager.ring.seed_contract(key);
1005-
super::start_subscription_request(op_manager, key).await;
1005+
let child_tx =
1006+
super::start_subscription_request(op_manager, id, key);
1007+
tracing::debug!(tx = %id, %child_tx, "started subscription as child operation");
10061008
}
10071009
} else {
10081010
tracing::debug!(tx = %id, %key, %is_original_requester, %subscribe_requested, "Putting contract at executor - state differs from local cache");

0 commit comments

Comments
 (0)