Skip to content

Commit c353795

Browse files
committed
Fix address
1 parent 885723b commit c353795

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/Preview/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{
1818
// Configure options for this builder. Can be omitted if no options customization is needed.
1919
builder.Configure(opt => { });
20-
builder.UseGrpc(address); // multiple overloads available for providing gRPC information
20+
builder.UseGrpc(); // multiple overloads available for providing gRPC information
2121

2222
// AddDurableTaskClient allows for multiple named clients by passing in a name as the first argument.
2323
// When using a non-default named client, you will need to make this call below to have the
@@ -39,7 +39,7 @@
3939
Mediator2Command.Register(tasks);
4040
});
4141

42-
builder.UseGrpc(address); // multiple overloads available for providing gRPC information
42+
builder.UseGrpc(); // multiple overloads available for providing gRPC information
4343
});
4444

4545
// Can also configure worker and client options through all the existing options config methods.

0 commit comments

Comments
 (0)