You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ne...@apache.org on 2014/08/15 02:46:28 UTC

git commit: KAFKA-1560 Make arguments to jira-python API more explicit in kafka-patch-review's get_jira(); reviewed by Neha Narkhede

Repository: kafka
Updated Branches:
  refs/heads/trunk a552d4b74 -> caf256ad8


KAFKA-1560 Make arguments to jira-python API more explicit in kafka-patch-review's get_jira(); reviewed by Neha Narkhede


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

Branch: refs/heads/trunk
Commit: caf256ad8ce1b204959b431b6268c7c66f9c480d
Parents: a552d4b
Author: Jonathan Natkins <na...@wibidata.com>
Authored: Thu Aug 14 17:46:12 2014 -0700
Committer: Neha Narkhede <ne...@gmail.com>
Committed: Thu Aug 14 17:46:21 2014 -0700

----------------------------------------------------------------------
 kafka-patch-review.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/caf256ad/kafka-patch-review.py
----------------------------------------------------------------------
diff --git a/kafka-patch-review.py b/kafka-patch-review.py
index 2ca0174..b7f132f 100644
--- a/kafka-patch-review.py
+++ b/kafka-patch-review.py
@@ -22,7 +22,7 @@ def get_jira():
   }
 
   jira_config = get_jira_config()
-  jira = JIRA(options,basic_auth=(jira_config['user'], jira_config['password']))
+  jira = JIRA(options=options,basic_auth=(jira_config['user'], jira_config['password']))
   return jira
 
 def cmd_exists(cmd):