You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/07/18 11:25:03 UTC

[airflow] branch v2-1-test updated: Add SSH_PORT variable

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

potiuk pushed a commit to branch v2-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v2-1-test by this push:
     new b83794e  Add SSH_PORT variable
b83794e is described below

commit b83794e528123d8a2789f8592783cc7652354214
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Sun Jul 18 13:24:23 2021 +0200

    Add SSH_PORT variable
---
 scripts/ci/libraries/_initialization.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/ci/libraries/_initialization.sh b/scripts/ci/libraries/_initialization.sh
index 2a38b33..cbeb932 100644
--- a/scripts/ci/libraries/_initialization.sh
+++ b/scripts/ci/libraries/_initialization.sh
@@ -71,6 +71,7 @@ function initialization::create_directories() {
 # Very basic variables that MUST be set
 function initialization::initialize_base_variables() {
     # Default port numbers for forwarded ports
+    export SSH_PORT=${SSH_PORT:="12322"}
     export WEBSERVER_HOST_PORT=${WEBSERVER_HOST_PORT:="28080"}
     export POSTGRES_HOST_PORT=${POSTGRES_HOST_PORT:="25433"}
     export MYSQL_HOST_PORT=${MYSQL_HOST_PORT:="23306"}