File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
AzureFunctions.PowerShell.Durable.SDK.E2E
DurableOrchestratorAccessContextProps Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ await ValidateDurableWorkflowResults(
72
72
Assert . Equal ( "True" , finalStatusResponseBody . output [ 0 ] . ToString ( ) ) ;
73
73
Assert . Equal ( "Hello myInstanceId" , finalStatusResponseBody . output [ 1 ] . ToString ( ) ) ;
74
74
Assert . Equal ( "False" , finalStatusResponseBody . output [ 2 ] . ToString ( ) ) ;
75
+ Assert . Equal ( "1.0" , finalStatusResponseBody . output [ 3 ] . ToString ( ) ) ;
75
76
} ) ;
76
77
}
77
78
}
Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ $output = @()
5
5
$output += $Context.IsReplaying
6
6
$output += Invoke-DurableActivity - FunctionName ' Hello' - Input $Context.InstanceId
7
7
$output += $Context.IsReplaying
8
+ $output += $Context.Version
8
9
$output
Original file line number Diff line number Diff line change 10
10
},
11
11
"managedDependency" : {
12
12
"enabled" : true
13
+ },
14
+ "extensions" : {
15
+ "durableTask" : {
16
+ "defaultVersion" : " 1.0"
17
+ }
13
18
}
14
19
}
You can’t perform that action at this time.
0 commit comments