Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
4423d13
separate DF SDK classes from DF worker classes
davidmrdavid Jan 29, 2022
9d73110
fix typo
davidmrdavid Jan 29, 2022
2fcbfae
DurableSDK now compiles by itself
davidmrdavid Jan 29, 2022
f43f350
Allow ExternalSDK to handle orchestration
davidmrdavid Feb 3, 2022
092e333
document next steps
davidmrdavid Feb 3, 2022
506e4f7
allow external SDK to set the user-code's input. Still need to refact…
davidmrdavid Feb 4, 2022
7a38ec8
add import module
davidmrdavid Feb 16, 2022
9b2cf42
supress traces
davidmrdavid Feb 16, 2022
47caee9
avoid nullptr
davidmrdavid Feb 16, 2022
1010f97
pass tests
davidmrdavid Feb 17, 2022
d916d58
fix E2E tests
davidmrdavid Feb 17, 2022
946ea37
develop E2E tests
davidmrdavid Feb 18, 2022
64b6c49
Enabled external durable client (#765)
davidmrdavid Feb 18, 2022
9e7cf96
bindings work
davidmrdavid Feb 18, 2022
92f113e
conditional binding intialization
davidmrdavid Feb 18, 2022
e5843ce
conditional import
davidmrdavid Feb 18, 2022
2ee6b96
Added exception handling logic
michaelpeng36 Feb 25, 2022
ae28f6e
Ensure unit tests are functioning properly
michaelpeng36 Feb 28, 2022
94f995d
Corrected unit test names
michaelpeng36 Feb 28, 2022
96f6ee7
Turned repeated variables in unit tests into static members
michaelpeng36 Feb 28, 2022
1cb30b8
Revert durableController name to durableFunctionsUtils
michaelpeng36 Mar 1, 2022
ff5102e
Merge remote-tracking branch 'origin/michaelpeng/get-durable-tests-wo…
davidmrdavid Mar 1, 2022
b8c6a6a
Fixed issue with building the worker
michaelpeng36 Mar 8, 2022
baae3cc
Fix E2E test
michaelpeng36 Mar 8, 2022
6feb7fe
Fixed unit test setup
michaelpeng36 Mar 8, 2022
94d83ae
Fixed another unit test setup
michaelpeng36 Mar 8, 2022
d11a561
Remove string representation of booleans
michaelpeng36 Mar 8, 2022
0e0c077
patch e2e test
davidmrdavid Mar 9, 2022
1c4a7ae
remove typo in toString
davidmrdavid Mar 9, 2022
dc0ed38
Merge branch 'dev' of https://github.com/Azure/azure-functions-powers…
davidmrdavid Mar 9, 2022
3bd961c
Return results from Start-DurableExternalEventListener (#685) (#753)
davidmrdavid Mar 9, 2022
caa5176
add external contrib
davidmrdavid Mar 9, 2022
932e124
add e2e test for GetTaskResult
davidmrdavid Mar 9, 2022
3d1a7b4
parametrize test
davidmrdavid Mar 9, 2022
adec8fa
patch new e2e test
davidmrdavid Mar 9, 2022
8d5d9bf
patch external contrib
davidmrdavid Mar 9, 2022
8351653
fix typo in test
davidmrdavid Mar 9, 2022
7232e58
comment changes
davidmrdavid Mar 14, 2022
d9b3baf
Adds IExternalInvoker (#776)
michaelpeng36 Mar 16, 2022
edf3011
rename hasOrchestrationContext to hasInitializedDurableFunction
davidmrdavid Mar 16, 2022
aca4c0b
remove outdated TODO comment
davidmrdavid Mar 16, 2022
e5ca2ba
remove now unused function - CreateOrchestrationBindingInfo
davidmrdavid Mar 16, 2022
f69b146
Allow worker to read results directly from the external SDK (#777)
michaelpeng36 Mar 17, 2022
4387799
comment out external SDK path
davidmrdavid Mar 17, 2022
a9a0a6e
change serialization
davidmrdavid Jul 12, 2022
12ccdee
Merge branch 'dev' of https://github.com/Azure/azure-functions-powers…
davidmrdavid Jul 12, 2022
5f862e6
restore orchestrationInvoker and powershellServices
davidmrdavid Jul 12, 2022
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
Prev Previous commit
Next Next commit
Remove string representation of booleans
  • Loading branch information
michaelpeng36 committed Mar 8, 2022
commit d11a5616a9b9c93bd18bcfdce67a9a80d946b8b9
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ public async Task OrchestratationContextHasAllExpectedProperties()
{
var statusResponseBody = await GetResponseBodyAsync(statusResponse);
Assert.Equal("Completed", (string)statusResponseBody.runtimeStatus);
Assert.Equal("true", statusResponseBody.output[0].ToString());
Assert.True(statusResponseBody.output[0]);
Assert.Equal("Hello myInstanceId", statusResponseBody.output[1].ToString());
Assert.Equal("false", statusResponseBody.output[2].ToString());
Assert.False(statusResponseBody.output[2]);
return;
}

Expand Down