GetSwaggerAuthKey should not return nullable string (#49)
This commit is contained in:
Родитель
74aa1bea96
Коммит
3321bf087c
|
@ -118,7 +118,7 @@ namespace Microsoft.Azure.WebJobs.Extensions.OpenApi
|
|||
{
|
||||
var value = Environment.GetEnvironmentVariable(key);
|
||||
|
||||
return value;
|
||||
return value ?? string.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче