Skip to content

Commit

Permalink
chore(dependencies): kork bump and necessary fixes (#3914)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsie committed Sep 17, 2020
1 parent 044f11b commit 7f71bb0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,6 +1,6 @@
enablePublishing=false
fiatVersion=1.23.0
korkVersion=7.67.0
korkVersion=7.68.0
keikoVersion=3.9.0
kotlinVersion=1.3.72
org.gradle.parallel=true
Expand Down
@@ -1,6 +1,6 @@
package com.netflix.spinnaker.orca.remote.model

import com.netflix.spinnaker.kork.plugins.remote.extension.RemoteExtensionPayload
import com.netflix.spinnaker.kork.plugins.remote.extension.transport.RemoteExtensionPayload

/**
* The payload sent to the remote stage on invocation.
Expand Down
Expand Up @@ -25,7 +25,7 @@ class MonitorRemoteStageTask : RetryableTask {
}

return if (remoteStatus == ExecutionStatus.SUCCEEDED || remoteStatus == ExecutionStatus.TERMINAL) {
TaskResult.builder(remoteStatus).context(outputs).build()
TaskResult.builder(remoteStatus).context(outputs).outputs(outputs).build()
} else {
TaskResult.builder(ExecutionStatus.RUNNING).context(outputs).build()
}
Expand Down

0 comments on commit 7f71bb0

Please sign in to comment.