diff --git a/services/web/app/coffee/Features/Compile/ClsiManager.coffee b/services/web/app/coffee/Features/Compile/ClsiManager.coffee index 9af1602d2c..fde2e7dc4b 100755 --- a/services/web/app/coffee/Features/Compile/ClsiManager.coffee +++ b/services/web/app/coffee/Features/Compile/ClsiManager.coffee @@ -75,10 +75,8 @@ module.exports = ClsiManager = _parseOutputFiles: (project_id, rawOutputFiles = []) -> outputFiles = [] for file in rawOutputFiles - path = Url.parse(file.url).path - path = path.replace("/project/#{project_id}/output/", "") outputFiles.push - path: path + path: file.path # the clsi is now sending this to web type: file.type build: file.build return outputFiles diff --git a/services/web/test/UnitTests/coffee/Compile/ClsiManagerTests.coffee b/services/web/test/UnitTests/coffee/Compile/ClsiManagerTests.coffee index 9889bcb87b..61b38501df 100644 --- a/services/web/test/UnitTests/coffee/Compile/ClsiManagerTests.coffee +++ b/services/web/test/UnitTests/coffee/Compile/ClsiManagerTests.coffee @@ -42,10 +42,12 @@ describe "ClsiManager", -> status: @status = "success" outputFiles: [{ url: "#{@settings.apis.clsi.url}/project/#{@project_id}/output/output.pdf" + path: "output.pdf" type: "pdf" build: 1234 },{ url: "#{@settings.apis.clsi.url}/project/#{@project_id}/output/output.log" + path: "output.log" type: "log" build: 1234 }]