diff --git a/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala b/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala index c9a29c5259c..97c5bbd4b62 100644 --- a/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala +++ b/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala @@ -156,7 +156,7 @@ object TesAsyncBackendJobExecutionActor { // Log if not all input files live in the same container. // We'll do our best anyway, but will still only be able to retrieve a token for a single container. if(blobFiles.forall(_.container == blobFiles.headOption.map(file => file.container).getOrElse(BlobContainerName("no_container")))) { - logger.warn(s"While parsing blob inputs, found more than one container. Can only generate an environment sas token for a single blob container at once.") + logger.info(s"While parsing blob inputs, found more than one container. Can only generate an environment sas token for a single blob container at once.") } // We use the first blob file in the list as a template for determining the localized sas params diff --git a/supportedBackends/tes/src/test/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActorSpec.scala b/supportedBackends/tes/src/test/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActorSpec.scala index b400f2a965a..98843f43bdd 100644 --- a/supportedBackends/tes/src/test/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActorSpec.scala +++ b/supportedBackends/tes/src/test/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActorSpec.scala @@ -72,11 +72,13 @@ class TesAsyncBackendJobExecutionActorSpec extends AnyFlatSpec with Matchers wit mockFsm.blobTokenGenerator returns mockTokenGenerator val mockPath: cromwell.core.path.Path = mock[cromwell.core.path.Path] - mockPath.normalize() returns mockPath + mockPath.normalize returns mockPath + val mockNioPath: path.NioPath = mock[path.NioPath] val mockJavaPath: Path = mock[java.nio.file.Path] - mockNioPath.toAbsolutePath returns mockJavaPath + mockNioPath.normalize returns mockNioPath + mockBlobPath.getFilesystemManager returns mockFsm mockBlobPath.nioPath returns mockNioPath mockBlobPath.toAbsolutePath returns mockPath