You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bh...@apache.org on 2020/08/04 19:17:08 UTC

[hbase] branch branch-1 updated: HBASE-24816: Remove unused credential hbaseqa-at-asf-jira (#2195)

This is an automated email from the ASF dual-hosted git repository.

bharathv pushed a commit to branch branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-1 by this push:
     new 2c047ea  HBASE-24816: Remove unused credential hbaseqa-at-asf-jira (#2195)
2c047ea is described below

commit 2c047eafc0f53745faa5a8dc1b45676e30f11fc5
Author: Bharath Vissapragada <bh...@apache.org>
AuthorDate: Tue Aug 4 12:16:50 2020 -0700

    HBASE-24816: Remove unused credential hbaseqa-at-asf-jira (#2195)
    
    Signed-off-by: Viraj Jasani <vj...@apache.org>
---
 dev-support/Jenkinsfile_GitHub | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/dev-support/Jenkinsfile_GitHub b/dev-support/Jenkinsfile_GitHub
index 95f3d28..99dbcf3 100644
--- a/dev-support/Jenkinsfile_GitHub
+++ b/dev-support/Jenkinsfile_GitHub
@@ -61,13 +61,12 @@ pipeline {
 
         stage ('precommit-run') {
             steps {
-                withCredentials(
-                    [usernamePassword(credentialsId: 'apache-hbase-at-github.com',
-                                  passwordVariable: 'GITHUB_PASSWORD',
-                                  usernameVariable: 'GITHUB_USER'),
-                    usernamePassword(credentialsId: 'hbaseqa-at-asf-jira',
-                                        passwordVariable: 'JIRA_PASSWORD',
-                                        usernameVariable: 'JIRA_USER')]) {
+                withCredentials([
+                    usernamePassword(
+                    credentialsId: 'apache-hbase-at-github.com',
+                    passwordVariable: 'GITHUB_PASSWORD',
+                    usernameVariable: 'GITHUB_USER'
+                    )]) {
                         sh '''#!/usr/bin/env bash
                         set -e
                         TESTPATCHBIN="${WORKSPACE}/${YETUS}/precommit/src/main/shell/test-patch.sh"