Skip to content

Commit b4a524b

Browse files
committed
fix test failure
Signed-off-by: jorgee <jorge.ejarque@seqera.io>
1 parent bbb1453 commit b4a524b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/nf-lineage/src/main/nextflow/lineage/LinObserver.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ class LinObserver implements TraceObserverV2 {
484484
private Map addOtherMetadata(PathNormalizer normalizer) {
485485
try {
486486
def metadata = session.workflowMetadata.toMap()
487-
.collectEntries { it.value instanceof Path ? [it.key, normalizer.normalizePath(it.value as Path) ] : [it.key, it.value] }
487+
.collectEntries { it.value instanceof Path ? [it.key, FilesEx.toUriString(it.value as Path) ] : [it.key, it.value] }
488488
metadata.removeAll {it.key.toString() in workflowMetadataPropertiesToRemove }
489489
if( metadata.containsKey("nextflow") )
490490
metadata["nextflow"] = (metadata["nextflow"] as NextflowMeta).toJsonMap()

0 commit comments

Comments
 (0)