You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/05/20 16:22:39 UTC

incubator-ignite git commit: # ignite-456: fix info extracting

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-456 9ddc38c09 -> ba44f76e9


# ignite-456: fix info extracting


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/ba44f76e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/ba44f76e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/ba44f76e

Branch: refs/heads/ignite-456
Commit: ba44f76e91554a6b76d33abfbadcbc05a5e6e8e1
Parents: 9ddc38c
Author: null <null>
Authored: Wed May 20 17:23:36 2015 +0300
Committer: null <null>
Committed: Wed May 20 17:23:36 2015 +0300

----------------------------------------------------------------------
 dev-tools/src/main/groovy/jiraslurp.groovy | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/ba44f76e/dev-tools/src/main/groovy/jiraslurp.groovy
----------------------------------------------------------------------
diff --git a/dev-tools/src/main/groovy/jiraslurp.groovy b/dev-tools/src/main/groovy/jiraslurp.groovy
index 5c783ea..f16f47b 100644
--- a/dev-tools/src/main/groovy/jiraslurp.groovy
+++ b/dev-tools/src/main/groovy/jiraslurp.groovy
@@ -233,17 +233,17 @@ def runAllTestBuilds = { builds, jiraNum ->
 
             String response = "";
             String line;
-  
+
             while ((line = br.readLine()) != null)
                 response += line
 
             br.close();
 
             println "Response: $response"
-  
+
             def build = new XmlSlurper().parseText(response)
 
-            println "Triggered build: ${build.@name}"
+            println "Triggered build: ${build.buildType.@name}"
             println "Triggered build url: ${build.@webUrl}"
             println "Triggered build branch: ${build.@branchName}"
         }