Skip to content

Commit ef2091c

Browse files
For testing fulcrum genomics pr (#518)
* Fix typo in test invocation of -executableCreationParallelism * Maybe fix applet with dockerRegistry test failing due to change in order of independent tasks --------- Co-authored-by: Ted Brookings <ted@fulcrumgenomics.com>
1 parent c308d51 commit ef2091c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/src/main/scala/dx/compiler/Compiler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ case class Compiler(extras: Option[Extras],
524524

525525
val subBlocks = new VectorBuilder[Vector[String]]
526526
var allSatisfied = Set.empty[String]
527-
var remainingNames = bundle.allCallables.keys.toVector
527+
var remainingNames = bundle.dependencies
528528
logger.trace("Finding blocks of parallelizable callables to build")
529529
while (remainingNames.nonEmpty) {
530530
val (satisfied, unsatisfied) = remainingNames.partition(c => deps(c).subsetOf(allSatisfied))

compiler/src/test/scala/dx/compiler/CompilerTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ class CompilerTest extends AnyFlatSpec with Matchers with BeforeAndAfterAll {
312312

313313
it should "Native compile a linear WDL workflow in parallel" taggedAs NativeTest in {
314314
val path = pathFromBasename("compiler", "wf_linear.wdl")
315-
val args = path.toString :: cFlags ++ List("executableCreationParallelism", "4")
315+
val args = path.toString :: cFlags ++ List("-executableCreationParallelism", "4")
316316
val retval = Main.compile(args.toVector)
317317
retval shouldBe a[SuccessfulCompileNativeNoTree]
318318
}

0 commit comments

Comments
 (0)