Unverified Commit 0e071c3f authored by Anil Gupta's avatar Anil Gupta Committed by GitHub
Browse files

Issue #SB-29808 merge: Merge pull request #832 from Jayaprakash8887/SB29808

Issue #SB-29808 debug: Review API failing
Showing with 3 additions and 1 deletion
+3 -1
......@@ -2,12 +2,12 @@ package org.sunbird.mimetype.ecml.processor
import java.io.{File, IOException}
import java.net.URL
import org.apache.commons.io.{FileUtils, FilenameUtils}
import org.apache.commons.lang3.StringUtils
import org.sunbird.cloudstore.StorageService
import org.sunbird.common.Platform
import org.sunbird.common.exception.ClientException
import org.sunbird.telemetry.logger.TelemetryManager
import scala.concurrent.{Await, ExecutionContext, Future}
import scala.concurrent.duration.Duration
......@@ -62,6 +62,8 @@ trait LocalizeAssetProcessor extends IProcessor {
}
def downloadFile(downloadPath: String, fileUrl: String): File = try {
TelemetryManager.info("LocalizeAssetProcessor:: downloadFile:: downloadPath:: " + downloadPath)
TelemetryManager.info("LocalizeAssetProcessor:: downloadFile:: fileUrl:: " + fileUrl)
createDirectory(downloadPath)
val file = new File(downloadPath + File.separator + getFileNameFromURL(fileUrl))
FileUtils.copyURLToFile(new URL(fileUrl), file)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment