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/27 19:39:38 UTC

incubator-ignite git commit: # ignite-899: print text

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-456 f19412be6 -> e2b2e87e7


# ignite-899: print text


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

Branch: refs/heads/ignite-456
Commit: e2b2e87e7e32a2edb4a7ac47d7de1e9b702cdf04
Parents: f19412b
Author: null <null>
Authored: Wed May 27 20:39:28 2015 +0300
Committer: null <null>
Committed: Wed May 27 20:39:28 2015 +0300

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


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e2b2e87e/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 a285165..04681fc 100644
--- a/dev-tools/src/main/groovy/jiraslurp.groovy
+++ b/dev-tools/src/main/groovy/jiraslurp.groovy
@@ -315,7 +315,12 @@ def applyPatch = { jira, attachementURL ->
     conn.setRequestProperty("X-Content-Type-Options", "nosniff");
     conn.connect();
 
-    patchFile << conn.inputStream.text
+
+    def text = conn.inputStream.text
+
+    println text
+
+    patchFile << text
 
     println "Got patch content."