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 2022/04/08 14:07:35 UTC

[airflow] branch main updated: fix message in prepare_provider_packages.py (#22856)

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

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new a7b1f62d9c fix message in prepare_provider_packages.py (#22856)
a7b1f62d9c is described below

commit a7b1f62d9c9227e09c8a861febbb976b06c293da
Author: eladkal <45...@users.noreply.github.com>
AuthorDate: Fri Apr 8 17:07:20 2022 +0300

    fix message in prepare_provider_packages.py (#22856)
---
 dev/provider_packages/prepare_provider_packages.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/provider_packages/prepare_provider_packages.py b/dev/provider_packages/prepare_provider_packages.py
index 9ea957fb19..4cb8e58f05 100755
--- a/dev/provider_packages/prepare_provider_packages.py
+++ b/dev/provider_packages/prepare_provider_packages.py
@@ -2068,7 +2068,7 @@ def summarise_total_vs_bad_and_warnings(total: int, bad: int, warns: List[warnin
         console.print(f"[red]ERROR! There were {len(warns)} warnings generated during the import[/]")
         console.print()
         console.print("[yellow]Ideally, fix it, so that no warnings are generated during import.[/]")
-        console.print("[yellow]There are two cases that are legitimate deprecation warnings though:[/]")
+        console.print("[yellow]There are three cases that are legitimate deprecation warnings though:[/]")
         console.print("[yellow] 1) when you deprecate whole module or class and replace it in provider[/]")
         console.print("[yellow] 2) when 3rd-party module generates Deprecation and you cannot upgrade it[/]")
         console.print(