You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by pr...@apache.org on 2016/05/13 05:32:39 UTC

incubator-zeppelin git commit: [ZEPPELIN-843] Comment showing up on issues.apache.org is wrong

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master a87d45ec0 -> cf341f7cc


[ZEPPELIN-843] Comment showing up on issues.apache.org is wrong

### What is this PR for?
When using merge_zeppelin_pr.py utility the comment that shows up on issues.apache.org is wrong. The URL that prints is "pulls", it should be "pull"
It shows up as :

    Issue resolved by pull request 874
    https://github.com/apache/incubator-zeppelin/pulls/874

It should be :

    Issue resolved by pull request 874
    https://github.com/apache/incubator-zeppelin/pull/874

### What type of PR is it?
[Bug Fix]

### Todos
N/A

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-843

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Prabhjyot Singh <pr...@gmail.com>

Closes #879 from prabhjyotsingh/ZEPPELIN-843 and squashes the following commits:

189f468 [Prabhjyot Singh] fix : Comment showing up on issues.apache.org is wrong


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

Branch: refs/heads/master
Commit: cf341f7cc233ad6324546d0f60144f58276e784f
Parents: a87d45e
Author: Prabhjyot Singh <pr...@gmail.com>
Authored: Tue May 10 11:02:02 2016 +0530
Committer: Prabhjyot Singh <pr...@gmail.com>
Committed: Fri May 13 11:02:27 2016 +0530

----------------------------------------------------------------------
 dev/merge_zeppelin_pr.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/cf341f7c/dev/merge_zeppelin_pr.py
----------------------------------------------------------------------
diff --git a/dev/merge_zeppelin_pr.py b/dev/merge_zeppelin_pr.py
index 61bbd6f..d698157 100755
--- a/dev/merge_zeppelin_pr.py
+++ b/dev/merge_zeppelin_pr.py
@@ -48,7 +48,7 @@ JIRA_USERNAME = os.environ.get("JIRA_USERNAME", "moon")
 # ASF JIRA password
 JIRA_PASSWORD = os.environ.get("JIRA_PASSWORD", "00000")
 
-GITHUB_BASE = "https://github.com/apache/incubator-zeppelin/pulls"
+GITHUB_BASE = "https://github.com/apache/incubator-zeppelin/pull"
 GITHUB_API_BASE = "https://api.github.com/repos/apache/incubator-zeppelin"
 JIRA_BASE = "https://issues.apache.org/jira/browse"
 JIRA_API_BASE = "https://issues.apache.org/jira"