Skip to content

Commit 622eda1

Browse files
authored
Fix cloud CI run and minor doc fix (#339)
Fixes #331 Fixes #333
1 parent 76e01fc commit 622eda1

10 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ jobs:
9898
# Only supported in non-fork runs, since secrets are not available in forks
9999
if: ${{ matrix.cloudTestTarget && (github.event.pull_request.head.repo.full_name == '' || github.event.pull_request.head.repo.full_name == 'temporalio/sdk-dotnet') }}
100100
env:
101-
TEMPORAL_CLIENT_TARGET_HOST: ${{ vars.TEMPORAL_CLIENT_NAMESPACE }}.tmprl.cloud:7233
102-
TEMPORAL_CLIENT_NAMESPACE: ${{ vars.TEMPORAL_CLIENT_NAMESPACE }}
103-
TEMPORAL_CLIENT_CERT: ${{ secrets.TEMPORAL_CLIENT_CERT }}
104-
TEMPORAL_CLIENT_KEY: ${{ secrets.TEMPORAL_CLIENT_KEY }}
101+
TEMPORAL_TEST_CLIENT_TARGET_HOST: ${{ vars.TEMPORAL_CLIENT_NAMESPACE }}.tmprl.cloud:7233
102+
TEMPORAL_TEST_CLIENT_NAMESPACE: ${{ vars.TEMPORAL_CLIENT_NAMESPACE }}
103+
TEMPORAL_TEST_CLIENT_CERT: ${{ secrets.TEMPORAL_CLIENT_CERT }}
104+
TEMPORAL_TEST_CLIENT_KEY: ${{ secrets.TEMPORAL_CLIENT_KEY }}
105105
run: dotnet run --project tests/Temporalio.Tests -- -verbose -method "*.ExecuteWorkflowAsync_Simple_Succeeds"
106106

107107
- name: Test cloud operations client

src/Temporalio/Client/WorkflowCancelOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Temporalio.Client
88
public class WorkflowCancelOptions : ICloneable
99
{
1010
/// <summary>
11-
/// Gets or sets RPC options for starting the workflow.
11+
/// Gets or sets RPC options for cancelling the workflow.
1212
/// </summary>
1313
public RpcOptions? Rpc { get; set; }
1414

src/Temporalio/Client/WorkflowDescribeOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Temporalio.Client
88
public class WorkflowDescribeOptions : ICloneable
99
{
1010
/// <summary>
11-
/// Gets or sets RPC options for starting the workflow.
11+
/// Gets or sets RPC options for describing the workflow.
1212
/// </summary>
1313
public RpcOptions? Rpc { get; set; }
1414

src/Temporalio/Client/WorkflowHistoryEventFetchOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class WorkflowHistoryEventFetchOptions : ICloneable
2626
public bool SkipArchival { get; set; }
2727

2828
/// <summary>
29-
/// Gets or sets RPC options for starting the workflow.
29+
/// Gets or sets RPC options for fetching history event pages.
3030
/// </summary>
3131
public RpcOptions? Rpc { get; set; }
3232

src/Temporalio/Client/WorkflowHistoryFetchOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class WorkflowHistoryFetchOptions : ICloneable
2121
public bool SkipArchival { get; set; }
2222

2323
/// <summary>
24-
/// Gets or sets RPC options for starting the workflow.
24+
/// Gets or sets RPC options for fetching history.
2525
/// </summary>
2626
public RpcOptions? Rpc { get; set; }
2727

src/Temporalio/Client/WorkflowListOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Temporalio.Client
99
public class WorkflowListOptions : ICloneable
1010
{
1111
/// <summary>
12-
/// Gets or sets RPC options for starting the workflow.
12+
/// Gets or sets RPC options for listing workflows.
1313
/// </summary>
1414
public RpcOptions? Rpc { get; set; }
1515

src/Temporalio/Client/WorkflowQueryOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class WorkflowQueryOptions : ICloneable
1515
public QueryRejectCondition? RejectCondition { get; set; }
1616

1717
/// <summary>
18-
/// Gets or sets RPC options for starting the workflow.
18+
/// Gets or sets RPC options for querying the workflow.
1919
/// </summary>
2020
public RpcOptions? Rpc { get; set; }
2121

src/Temporalio/Client/WorkflowSignalOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Temporalio.Client
99
public class WorkflowSignalOptions : ICloneable
1010
{
1111
/// <summary>
12-
/// Gets or sets RPC options for starting the workflow.
12+
/// Gets or sets RPC options for signalling the workflow.
1313
/// </summary>
1414
public RpcOptions? Rpc { get; set; }
1515

src/Temporalio/Client/WorkflowTerminateOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class WorkflowTerminateOptions : ICloneable
1414
public IReadOnlyCollection<object?>? Details { get; set; }
1515

1616
/// <summary>
17-
/// Gets or sets RPC options for starting the workflow.
17+
/// Gets or sets RPC options for terminating the workflow.
1818
/// </summary>
1919
public RpcOptions? Rpc { get; set; }
2020

src/Temporalio/Client/WorkflowUpdateOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public WorkflowUpdateOptions()
2929
public string? Id { get; set; }
3030

3131
/// <summary>
32-
/// Gets or sets RPC options for starting the workflow.
32+
/// Gets or sets RPC options for update RPC calls.
3333
/// </summary>
3434
public RpcOptions? Rpc { get; set; }
3535

0 commit comments

Comments
 (0)