This commit is contained in:
Raymond Sun 2021-05-29 16:09:42 +08:00 коммит произвёл GitHub
Родитель e8c463bebc
Коммит febd17201d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -118,8 +118,8 @@ namespace Microsoft.Tye.ConfigModel
foreach (var envVar in service.Configuration)
{
context = new ValidationContext(service);
if (!Validator.TryValidateObject(service, context, results, validateAllProperties: true))
context = new ValidationContext(envVar);
if (!Validator.TryValidateObject(envVar, context, results, validateAllProperties: true))
{
throw new TyeYamlException(
$"Environment variable '{envVar.Name}' of service '{service.Name}' validation failed." + Environment.NewLine +
@ -129,8 +129,8 @@ namespace Microsoft.Tye.ConfigModel
foreach (var volume in service.Volumes)
{
context = new ValidationContext(service);
if (!Validator.TryValidateObject(service, context, results, validateAllProperties: true))
context = new ValidationContext(volume);
if (!Validator.TryValidateObject(volume, context, results, validateAllProperties: true))
{
throw new TyeYamlException(
$"Volume '{volume.Source}' of service '{service.Name}' validation failed." + Environment.NewLine +