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/19 09:37:15 UTC

[airflow] branch v2-1-test updated (b83794e -> e9eeaa2)

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

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


 discard b83794e  Add SSH_PORT variable
     new e9eeaa2  Add SSH_PORT variable

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b83794e)
            \
             N -- N -- N   refs/heads/v2-1-test (e9eeaa2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:

[airflow] 01/01: Add SSH_PORT variable

Posted by po...@apache.org.
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

commit e9eeaa2bc3b9c52bfc0e1a6b666265df4f4dd69d
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"}