This repository was archived by the owner on Apr 29, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
integration/single-node-slug-deploy Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ func generatePreparerPod(workdir string) (string, error) {
138138 }
139139 manifest .RunAs = "root"
140140 manifest .StatusPort = preparerStatusPort
141+ manifest .StatusHTTP = true
141142
142143 manifestBytes , err := manifest .Marshal ()
143144 if err != nil {
@@ -300,7 +301,6 @@ func postHelloManifest(dir string) error {
300301 manifest := & pods.Manifest {}
301302 manifest .Id = "hello"
302303 manifest .StatusPort = 43770
303- manifest .StatusHTTP = true
304304 stanza := pods.LaunchableStanza {
305305 LaunchableId : "hello" ,
306306 LaunchableType : "hoist" ,
Original file line number Diff line number Diff line change @@ -166,9 +166,9 @@ func updatePods(store kp.Store,
166166 Client : client ,
167167 }
168168 if man .Manifest .StatusHTTP {
169- sc .URI = fmt .Sprintf ("https://%s:%d/_status" , node , man .Manifest .StatusPort )
170- } else {
171169 sc .URI = fmt .Sprintf ("http://%s:%d/_status" , node , man .Manifest .StatusPort )
170+ } else {
171+ sc .URI = fmt .Sprintf ("https://%s:%d/_status" , node , man .Manifest .StatusPort )
172172 }
173173 newPod := PodWatch {
174174 manifest : man .Manifest ,
You can’t perform that action at this time.
0 commit comments