Skip to content

Commit

Permalink
fix: error in test result output schema
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
edvald committed Sep 4, 2019
1 parent 02bbb0f commit 8513721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion garden-service/src/types/plugin/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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("")
Expand Down

0 comments on commit 8513721

Please sign in to comment.