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 10339f1 commit c00278dCopy full SHA for c00278d
src/Shared/Grpc/ProtoUtils.cs
@@ -768,6 +768,14 @@ internal static void ToEntityBatchRequest(
768
Version = startNewOrchestrationAction.Version,
769
InstanceId = startNewOrchestrationAction.InstanceId,
770
ScheduledTime = startNewOrchestrationAction.ScheduledStartTime?.ToTimestamp(),
771
+ RequestTime = startNewOrchestrationAction.RequestTime?.ToTimestamp(),
772
+ ParentTraceContext = startNewOrchestrationAction.ParentTraceContext != null ?
773
+ new P.TraceContext
774
+ {
775
+ TraceParent = startNewOrchestrationAction.ParentTraceContext.TraceParent,
776
+ TraceState = startNewOrchestrationAction.ParentTraceContext.TraceState,
777
+ }
778
+ : null,
779
};
780
break;
781
}
0 commit comments