Skip to content

Commit

Permalink
Merge branch 'dstenroejl/client-tests-add-test-of-no-input' into dste…
Browse files Browse the repository at this point in the history
…nroejl/client-tests-move-orchestrations-tests
  • Loading branch information
dstenroejl committed Dec 18, 2024
2 parents 0ca8904 + 6e5b5ce commit 058482f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions docs/ProcessManager.Client/ReleaseNotes/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ProcessManager.Client Release Notes

## Version 0.14.5

- Internal refactoring.

## Version 0.14.4

- Add actor id to start orchestration messages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ProcessManager.Orchestrations.Abstractions Release Notes

## Version 0.2.6

- Internal refactoring.

## Version 0.2.5

- Add actor id to start orchestration messages.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ public async Task NoInputExampleOrchestration_WhenStarted_CanMonitorLifecycle()

using var scheduleRequest = new HttpRequestMessage(
HttpMethod.Post,
$"/api/orchestrationinstance/command/start/{orchestration.Name}/{orchestration.Version}");
$"/api/orchestrationinstance/command/start");
scheduleRequest.Content = new StringContent(
JsonSerializer.Serialize(command),
Encoding.UTF8,
"application/json");

// Step 1: Start new orchestration instance
using var response = await Fixture.ExampleOrchestrationsAppManager.AppHostManager
using var response = await Fixture.ProcessManagerAppManager.AppHostManager
.HttpClient
.SendAsync(scheduleRequest);
response.EnsureSuccessStatusCode();
Expand Down
2 changes: 1 addition & 1 deletion source/ProcessManager.Client/ProcessManager.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PropertyGroup>
<PackageId>Energinet.DataHub.ProcessManager.Client</PackageId>
<PackageVersion>0.14.4$(VersionSuffix)</PackageVersion>
<PackageVersion>0.14.5$(VersionSuffix)</PackageVersion>
<Title>DH3 Process Manager Client library</Title>
<Company>Energinet-DataHub</Company>
<Authors>Energinet-DataHub</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PropertyGroup>
<PackageId>Energinet.DataHub.ProcessManager.Orchestrations.Abstractions</PackageId>
<PackageVersion>0.2.5$(VersionSuffix)</PackageVersion>
<PackageVersion>0.2.6$(VersionSuffix)</PackageVersion>
<Title>DH3 Process Manager Orchestrations Abstractions library</Title>
<Company>Energinet-DataHub</Company>
<Authors>Energinet-DataHub</Authors>
Expand Down

0 comments on commit 058482f

Please sign in to comment.