Skip to content

Commit fbf415b

Browse files
authored
Merge branch 'develop' into aws-ecr-remote-hashing
2 parents 6c6a075 + 1ca1bb0 commit fbf415b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cromwell-drs-localizer/src/main/scala/drs/localizer/downloaders/BulkAccessUrlDownloader.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ case class BulkAccessUrlDownloader(resolvedUrls: List[ResolvedDrsUrl]) extends D
7575
Files.deleteIfExists(getmManifestPath)
7676

7777
def generateGetmCommand(pathToMainfestJson: Path): String =
78-
s"""timeout 24h getm --manifest ${pathToMainfestJson.toString} -vv"""
78+
s"""timeout 24h getm --manifest ${pathToMainfestJson.toString}"""
7979
def runGetm: IO[GetmResult] =
8080
generateJsonManifest(resolvedUrls).flatMap { manifestPath =>
8181
val script = generateGetmCommand(manifestPath)

cromwell-drs-localizer/src/test/scala/drs/localizer/downloaders/BulkAccessUrlDownloaderSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class BulkAccessUrlDownloaderSpec extends AnyFlatSpec with CromwellTimeoutSpec w
8080
it should "properly construct the invocation command" in {
8181
val downloader = BulkAccessUrlDownloader(oneElement)
8282
val filepath: Path = downloader.generateJsonManifest(threeElements).unsafeRunSync()
83-
val expected = s"""timeout 24h getm --manifest ${filepath.toString} -vv"""
83+
val expected = s"""timeout 24h getm --manifest ${filepath.toString}"""
8484
downloader.generateGetmCommand(filepath) shouldBe expected
8585
}
8686

0 commit comments

Comments
 (0)