Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion rust/worker/src/fn_consumer/fn_consumer_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,12 @@ impl FnConsumerManager {
}

/// Runs the attached function workflow for the given function across a batch of input collections.
#[instrument(name = "FnConsumerManager::dispatch_batch", skip(self), err)]
#[instrument(
name = "FnConsumerManager::dispatch_batch",
parent = None,
skip(self),
err
)]
async fn dispatch_batch(
&self,
fn_id: AttachedFunctionUuid,
Expand Down
Loading