From ceaa6238a9369f6238d44b05cf608adb46d7d27b Mon Sep 17 00:00:00 2001 From: cnathe Date: Mon, 16 Dec 2024 14:49:34 -0600 Subject: [PATCH] Build fix for getWebDavUrl() return type --- .../src/org/labkey/nextflow/pipeline/NextFlowPipelineJob.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextflow/src/org/labkey/nextflow/pipeline/NextFlowPipelineJob.java b/nextflow/src/org/labkey/nextflow/pipeline/NextFlowPipelineJob.java index 40455d8c..a09f7571 100644 --- a/nextflow/src/org/labkey/nextflow/pipeline/NextFlowPipelineJob.java +++ b/nextflow/src/org/labkey/nextflow/pipeline/NextFlowPipelineJob.java @@ -68,7 +68,7 @@ private static Path createConfig(Path configTemplate, Path parentDir, Path jobDi template = PageFlowUtil.getStreamContentsAsString(in); } - String webdavUrl = FileContentService.get().getWebDavUrl(parentDir, container, FileContentService.PathType.full); + String webdavUrl = FileContentService.get().getWebDavUrl(parentDir, container, FileContentService.PathType.full).toString(); webdavUrl = StringUtils.stripEnd(webdavUrl, "/"); String substitutedContent = template.replace("${quant_spectra_dir}", "quant_spectra_dir = '" + webdavUrl + "'");