Skip to content

Commit

Permalink
Remove 2017-latest from supported MSSQL versions (apache#18345)
Browse files Browse the repository at this point in the history
Seems that the 2017-latest version of MSSQL has some problems with
locking and continuously fails in `main`. Actually we do not have
to support 2017 version, it's perfectly ok to support only
2019 version as we had not made any promise yet to our users.
  • Loading branch information
potiuk authored Sep 18, 2021
1 parent 410e6d7 commit a54f8d6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions BREEZE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1834,7 +1834,7 @@ This is the current syntax for `./breeze <./breeze>`_:
--mssql-version MSSQL_VERSION
MSSql version used. One of:
2017-latest 2019-latest
2019-latest
-v, --verbose
Show verbose information about executed docker, kind, kubectl, helm commands. Useful for
Expand Down Expand Up @@ -2308,7 +2308,7 @@ This is the current syntax for `./breeze <./breeze>`_:
--mssql-version MSSQL_VERSION
MSSql version used. One of:
2017-latest 2019-latest
2019-latest
****************************************************************************************************
Enable production image
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Apache Airflow is tested with:
| PostgreSQL | 9.6, 10, 11, 12, 13 | 9.6, 10, 11, 12, 13 |
| MySQL | 5.7, 8 | 5.7, 8 |
| SQLite | 3.15.0+ | 3.15.0+ |
| MSSQL(Experimental) | 2017, 2019 | |
| MSSQL(Experimental) | 2019 | |

**Note**: MySQL 5.x versions are unable to or have limitations with
running multiple schedulers -- please see the [Scheduler docs](https://airflow.apache.org/docs/apache-airflow/stable/scheduler.html).
Expand Down
2 changes: 1 addition & 1 deletion breeze-complete
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ _breeze_allowed_kubernetes_versions="v1.20.2 v1.19.7 v1.18.15"
_breeze_allowed_helm_versions="v3.6.3"
_breeze_allowed_kind_versions="v0.11.1"
_breeze_allowed_mysql_versions="5.7 8"
_breeze_allowed_mssql_versions="2017-latest 2019-latest"
_breeze_allowed_mssql_versions="2019-latest"
_breeze_allowed_postgres_versions="9.6 10 11 12 13"
_breeze_allowed_kind_operations="start stop restart status deploy test shell k9s"
_breeze_allowed_executors="KubernetesExecutor CeleryExecutor LocalExecutor CeleryKubernetesExecutor"
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/libraries/_initialization.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function initialization::initialize_base_variables() {
export CURRENT_MYSQL_VERSIONS

# Currently supported versions of MSSQL
CURRENT_MSSQL_VERSIONS+=("2017-latest" "2019-latest")
CURRENT_MSSQL_VERSIONS+=("2019-latest")
export CURRENT_MSSQL_VERSIONS

BACKEND=${BACKEND:="sqlite"}
Expand Down

0 comments on commit a54f8d6

Please sign in to comment.