From a8f180b576e77e2e27d352e2bcff7f6eb6c0219a Mon Sep 17 00:00:00 2001 From: Tim Dysinger Date: Wed, 2 Mar 2016 11:56:43 -0800 Subject: [PATCH] bugfix: health check isn't available sometimes (E.G., while the application is mid-deployment) --- src/structs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structs.rs b/src/structs.rs index 249f7b4..0d85f50 100644 --- a/src/structs.rs +++ b/src/structs.rs @@ -213,7 +213,7 @@ pub struct MarathonTask { pub startedAt: Option, pub version: Option, pub servicePorts: Option>, - pub healthCheckResults: Vec, + pub healthCheckResults: Option>, } #[cfg(test)]