Skip to content

Commit 60e65d4

Browse files
committed
separate DF SDK classes from DF worker classes
fix typo remove TODOs remove commented-out code
1 parent 67c81cc commit 60e65d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+35
-9
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/Durable/Commands/InvokeDurableActivityCommand.cs renamed to src/DurableSDK/Commands/InvokeDurableActivityCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ protected override void EndProcessing()
4343
{
4444
var privateData = (Hashtable)MyInvocation.MyCommand.Module.PrivateData;
4545
var context = (OrchestrationContext)privateData[SetFunctionInvocationContextCommand.ContextKey];
46-
var loadedFunctions = FunctionLoader.GetLoadedFunctions();
46+
// var loadedFunctions = FunctionLoader.GetLoadedFunctions();
4747

4848
var task = new ActivityInvocationTask(FunctionName, Input, RetryOptions);
49-
ActivityInvocationTask.ValidateTask(task, loadedFunctions);
49+
// ActivityInvocationTask.ValidateTask(task, loadedFunctions);
5050

5151
_durableTaskHandler.StopAndInitiateDurableTaskOrReplay(
5252
task, context, NoWait.IsPresent,
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)