From 85137217490f64e46e06ad10289721780cdef355 Mon Sep 17 00:00:00 2001 From: Jon Edvald Date: Thu, 5 Sep 2019 00:43:57 +0200 Subject: [PATCH] fix: error in test result output schema This caused breaking errors when retrieving outdated test results. We may want to release this quickly as a hot patch release, it's possible this is affecting a number of users. --- garden-service/src/types/plugin/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garden-service/src/types/plugin/base.ts b/garden-service/src/types/plugin/base.ts index 07f127f2b3..b1b503f8ac 100644 --- a/garden-service/src/types/plugin/base.ts +++ b/garden-service/src/types/plugin/base.ts @@ -104,8 +104,8 @@ export const runResultSchema = joi.object() .required() .description("When the module run was completed."), log: joi.string() - .required() .allow("") + .default("") .description("The output log from the run."), output: joi.string() .allow("")