Corrected and tested sample 3 fix (#28111)

pull/28112/head
Wade Pickett 2023-01-16 15:30:19 -08:00 committed by GitHub
parent 85e511d630
commit 7dbf2ef7b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ namespace GrcpService
{
services.AddGrpc(options =>
{
options.Inteceptors.Add<LoggingInterceptor>();
options.Interceptors.Add<LoggingInterceptor>();
});
services.AddSingleton<LoggingInterceptor>();
}