You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Worker/Grpc/GrpcOrchestrationRunner.cs
+19-19Lines changed: 19 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ public static string LoadAndRun(
136
136
/// <param name="implementation">
137
137
/// An <see cref="ITaskOrchestrator"/> implementation that defines the orchestrator logic.
138
138
/// </param>
139
-
/// <param name="extendedSessions">
139
+
/// <param name="extendedSessionsCache">
140
140
/// The cache of extended sessions which can be used to retrieve the <see cref="ExtendedSessionState"/> if this orchestration request is from within an extended session.
141
141
/// </param>
142
142
/// <param name="services">
@@ -154,7 +154,7 @@ public static string LoadAndRun(
154
154
publicstaticstringLoadAndRun(
155
155
stringencodedOrchestratorRequest,
156
156
ITaskOrchestratorimplementation,
157
-
IMemoryCacheextendedSessions,
157
+
ExtendedSessionsCacheextendedSessionsCache,
158
158
IServiceProvider?services=null)
159
159
{
160
160
Check.NotNullOrEmpty(encodedOrchestratorRequest);
@@ -171,9 +171,20 @@ public static string LoadAndRun(
// If this is the first orchestration execution, then the past events count will be 0 but includePastEvents will be true (there are just none to include).
212
212
// Otherwise, there is an orchestration history but DurableTask.Core did not attach it since the extended session is still active on its end, but we have since evicted the
213
213
// session and lost the orchestration history so we cannot replay the orchestration.
@@ -240,14 +240,14 @@ public static string LoadAndRun(
0 commit comments