Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Counter Interceptor Sample #77

Merged
merged 20 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Made task queue a guid. Moved test to be in alphabetical order
  • Loading branch information
rross committed Jul 30, 2024
commit ca90698cdad5ee50ea1e350123cf10440641dbc1
2 changes: 1 addition & 1 deletion tests/CounterInterceptor/MyWorkflowTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public async Task RunAsync_CounterInterceptor()

var client = new TemporalClient(env.Client.Connection, clientOptions);

var taskQueue = "counter-interceptor-test-task-queue";
var taskQueue = Guid.NewGuid().ToString();

var workerOptions = new TemporalWorkerOptions(taskQueue).
AddAllActivities(new MyActivities()).
Expand Down
2 changes: 1 addition & 1 deletion tests/TemporalioSamples.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<ItemGroup>
<ProjectReference Include="..\src\ActivitySimple\TemporalioSamples.ActivitySimple.csproj" />
<ProjectReference Include="..\src\ActivityWorker\TemporalioSamples.ActivityWorker.csproj" />
<ProjectReference Include="..\src\CounterInterceptor\TemporalioSamples.CounterInterceptor.csproj" />
<ProjectReference Include="..\src\ContextPropagation\TemporalioSamples.ContextPropagation.csproj" />
<ProjectReference Include="..\src\CounterInterceptor\TemporalioSamples.CounterInterceptor.csproj" />
<ProjectReference Include="..\src\Encryption\Codec\TemporalioSamples.Encryption.Codec.csproj" />
<ProjectReference Include="..\src\Encryption\CodecServer\TemporalioSamples.Encryption.CodecServer.csproj" />
<ProjectReference Include="..\src\WorkflowUpdate\TemporalioSamples.WorkflowUpdate.csproj" />
Expand Down