Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id CB106200CD0 for ; Tue, 25 Jul 2017 10:33:40 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C99381664D3; Tue, 25 Jul 2017 08:33:40 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1BBAB1664BC for ; Tue, 25 Jul 2017 10:33:39 +0200 (CEST) Received: (qmail 20178 invoked by uid 500); 25 Jul 2017 08:33:39 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 20169 invoked by uid 99); 25 Jul 2017 08:33:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Jul 2017 08:33:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2E50DE3C41; Tue, 25 Jul 2017 08:33:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: alsorokin@apache.org To: commits@cordova.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cordova-paramedic git commit: CB-13028 Pick up tunnel id from env.var Date: Tue, 25 Jul 2017 08:33:39 +0000 (UTC) archived-at: Tue, 25 Jul 2017 08:33:41 -0000 Repository: cordova-paramedic Updated Branches: refs/heads/master df5944684 -> 258f10e8b CB-13028 Pick up tunnel id from env.var Project: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/commit/258f10e8 Tree: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/tree/258f10e8 Diff: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/diff/258f10e8 Branch: refs/heads/master Commit: 258f10e8b2d6832834f4176f3b4b392c93adbcff Parents: df59446 Author: Alexander Sorokin Authored: Tue Jul 25 11:33:29 2017 +0300 Committer: Alexander Sorokin Committed: Tue Jul 25 11:33:29 2017 +0300 ---------------------------------------------------------------------- lib/paramedic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/258f10e8/lib/paramedic.js ---------------------------------------------------------------------- diff --git a/lib/paramedic.js b/lib/paramedic.js index ede8065..736a464 100644 --- a/lib/paramedic.js +++ b/lib/paramedic.js @@ -873,7 +873,7 @@ ParamedicRunner.prototype.connectSauceConnect = function () { sauceConnectLauncher({ username: self.config.getSauceUser(), accessKey: self.config.getSauceKey(), - tunnelIdentifier: self.config.getSauceTunnelId(), + tunnelIdentifier: self.config.getSauceTunnelId() || process.env[util.SAUCE_TUNNEL_ID_ENV_VAR], connectRetries: util.SAUCE_CONNECT_CONNECTION_RETRIES, connectRetryTimeout: util.SAUCE_CONNECT_CONNECTION_TIMEOUT, downloadRetries: util.SAUCE_CONNECT_DOWNLOAD_RETRIES, --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org