Skip to content

Commit

Permalink
fix issue with publish
Browse files Browse the repository at this point in the history
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
  • Loading branch information
jorgee committed Jan 24, 2025
1 parent 8487592 commit 76ff6d8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ class OpenLineageEventFactory {
}


private static OpenLineage.Job generatePublishJob(){
private OpenLineage.Job generatePublishJob(){
final jobType = OL.newJobTypeJobFacet("BATCH", "Nextflow", "JOB")
return OL.newJobBuilder().namespace("io.nextflow").name("publish (${publishCount.getAndIncrement()})")
return OL.newJobBuilder().namespace(this.workflow.namespace).name("publish (${publishCount.getAndIncrement()})")
.facets(OL.newJobFacetsBuilder().jobType(jobType).build())
.build()
}
Expand Down

0 comments on commit 76ff6d8

Please sign in to comment.