Skip to content

Commit 1bc633f

Browse files
committed
Update Program.cs
1 parent c837e6d commit 1bc633f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Sample1.Client/Program.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,12 @@ static async Task Main(string[] args)
2828
encoding.MessageVersion = MessageVersion.Soap12WSAddressing10;
2929

3030
var factory = new ChannelFactory<IEchoServiceContract>(binding, new EndpointAddress("http://localhost:5000/echo"));
31-
var channel = factory.CreateChannel();
32-
3331

3432
for (var i = 0; i < 1_000_000; i++)
3533
{
34+
var channel = factory.CreateChannel();
3635
Console.WriteLine($"Performing echo request: {i}");
37-
_ = channel.Echo("poop");
36+
_ = channel.Echo("echo");
3837
//Thread.Sleep(50);
3938
}
4039
}

0 commit comments

Comments
 (0)