Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,5 @@ public class StartNewOrchestrationOperationAction : OperationAction
/// The input of the sub-orchestration.
/// </summary>
public string? Input { get; set; }

/// <summary>
/// Tags to be applied to the sub-orchestration.
/// </summary>
public IDictionary<string, string>? Tags { get; set; }
}
}
4 changes: 3 additions & 1 deletion src/DurableTask.Core/TaskEntityDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,9 @@ void ProcessSendStartMessage(WorkItemEffects effects, OrchestrationRuntimeState
};
var executionStartedEvent = new ExecutionStartedEvent(-1, action.Input)
{
Tags = OrchestrationTags.MergeTags(action.Tags, runtimeState.Tags),
Tags = OrchestrationTags.MergeTags(
runtimeState.Tags,
new Dictionary<string, string>() { { OrchestrationTags.FireAndForget, "" } }),
OrchestrationInstance = destination,
ParentInstance = new ParentInstance
{
Expand Down