Fix: missing } for clojure
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Thu, 16 Jul 2015 16:31:17 +0000 (12:31 -0400)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Thu, 16 Jul 2015 16:31:17 +0000 (12:31 -0400)
dsl/kernel-lttng-modules.seed.groovy

index 4f15c4b9c36615d38141f0d1120011e72672ed14..ca906704c055bcba11447ed6242e4a2bbedd0dcc 100644 (file)
@@ -304,8 +304,8 @@ while (toBuild.size() != 0) {
        if ((ongoingBuild.size() <= kernelEnabledNode) && (queuedTask.size() < limitQueue)) {
                def job = toBuild.pop()
                ongoingBuild.push(job.scheduleBuild2(0))
-               println "Currently " + queuedTask.findAll{it.task.name.startsWith(jobStartWithModule).size() + "module jobs are queued"
-               println "Currently " + queuedTask.findAll{it.task.name.startsWith(jobStartWithKernel).size() + "kernel jobs are queued"
+               println "Currently " + queuedTask.findAll{it.task.name.startsWith(jobStartWithModule)}.size() + " module jobs are queued"
+               println "Currently " + queuedTask.findAll{it.task.name.startsWith(jobStartWithKernel)}.size() + " kernel jobs are queued"
                println "\\t trigering " + HyperlinkNote.encodeTo('/' + job.url, job.fullDisplayName)
        } else {
                Thread.sleep(random.nextInt(120000))
This page took 0.022878 seconds and 4 git commands to generate.