diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-12-07 17:25:40 -0800 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-12-07 17:25:40 -0800 |
commit | b91c7068200895d7d0b9752a5e9520b2df6c04bd (patch) | |
tree | 0e797f0cf9012c012b6e036f5c98279d0cd0c725 /src/csharp/Grpc.IntegrationTesting | |
parent | 340661dbcd7282afb00e967f7e2d644a8c318817 (diff) | |
parent | 7a6b0a4293fe39445aeb85b091fec07f9e9f5f0a (diff) |
Merge Python tox fix into release-0.12-to-be-merged-into-master
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting')
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs b/src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs index 3d56678b99..35230f48c1 100644 --- a/src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs +++ b/src/csharp/Grpc.IntegrationTesting/MetadataCredentialsTest.cs @@ -67,7 +67,7 @@ namespace Grpc.IntegrationTesting new ChannelOption(ChannelOptions.SslTargetNameOverride, TestCredentials.DefaultHostOverride) }; - var asyncAuthInterceptor = new AsyncAuthInterceptor(async (authUri, metadata) => + var asyncAuthInterceptor = new AsyncAuthInterceptor(async (context, metadata) => { await Task.Delay(100); // make sure the operation is asynchronous. metadata.Add("authorization", "SECRET_TOKEN"); |