From 84953a1ed71c51044c58a428d1cfdaf2f5030066 Mon Sep 17 00:00:00 2001 From: Chris Baker <1675087+cgbaker@users.noreply.github.com> Date: Mon, 3 Feb 2020 20:27:28 +0000 Subject: [PATCH] wip: remove PolicyOverride from scaling request --- api/scaling.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/scaling.go b/api/scaling.go index edb0aa91f..a260171a2 100644 --- a/api/scaling.go +++ b/api/scaling.go @@ -17,13 +17,15 @@ type ScalingRequest struct { JobID string Value interface{} Reason string + Error string WriteRequest - PolicyOverride bool + // why is PolicyOverride in here? was this a mistake + // PolicyOverride bool } // ScaleStatusResponse is the payload for a generic scaling action type ScaleStatusResponse struct { JobID string - Value interface{} JobModifyIndex uint64 + Value interface{} }