This is an automated email from the ASF dual-hosted git repository. gfournier pushed a commit to branch release-2.3.x in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/release-2.3.x by this push: new fe3023245 fix(pipeline) fix s2i image in publish task fe3023245 is described below commit fe302324591d8aa3592e07bcc782db3f78a16854 Author: mmajerni <mmaje...@redhat.com> AuthorDate: Thu May 23 19:21:55 2024 +0200 fix(pipeline) fix s2i image in publish task --- pkg/controller/build/monitor_pod.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/build/monitor_pod.go b/pkg/controller/build/monitor_pod.go index 9e3fcf2d7..b45948c54 100644 --- a/pkg/controller/build/monitor_pod.go +++ b/pkg/controller/build/monitor_pod.go @@ -362,7 +362,7 @@ func publishTaskImageName(tasks []v1.Task) string { case t.Jib != nil: return t.Jib.Image case t.S2i != nil: - return t.S2i.Name + return t.S2i.Image } return ""