We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbb1453 commit b4a524bCopy full SHA for b4a524b
modules/nf-lineage/src/main/nextflow/lineage/LinObserver.groovy
@@ -484,7 +484,7 @@ class LinObserver implements TraceObserverV2 {
484
private Map addOtherMetadata(PathNormalizer normalizer) {
485
try {
486
def metadata = session.workflowMetadata.toMap()
487
- .collectEntries { it.value instanceof Path ? [it.key, normalizer.normalizePath(it.value as Path) ] : [it.key, it.value] }
+ .collectEntries { it.value instanceof Path ? [it.key, FilesEx.toUriString(it.value as Path) ] : [it.key, it.value] }
488
metadata.removeAll {it.key.toString() in workflowMetadataPropertiesToRemove }
489
if( metadata.containsKey("nextflow") )
490
metadata["nextflow"] = (metadata["nextflow"] as NextflowMeta).toJsonMap()
0 commit comments