Skip to content

Commit

Permalink
Fix celery command deprecation message with right version (apache#37926)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavansharma36 authored Mar 8, 2024
1 parent 4ca45c7 commit 08efc32
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion airflow/cli/commands/celery_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@
WORKER_PROCESS_NAME = "worker"

warnings.warn(
"Use celery command from providers package, Use celery provider > 3.5.2", DeprecationWarning, stacklevel=2
"Use celery command from providers package, Use celery provider >= 3.6.1",
DeprecationWarning,
stacklevel=2,
)


Expand Down

0 comments on commit 08efc32

Please sign in to comment.