forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make skip of trigger form in UI if no params are defined configurable (…
…apache#33351) * Make skip of trigger form in UI if no params are defined configurable * Review feedback, remove negating bool * Review feedback, remove negating bool * Add newsfragment
- Loading branch information
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The trigger UI form is skipped in web UI with 2.7.0 if no parameters are defined in a DAG. | ||
|
||
If you are using ``dag_run.conf`` dictionary and web UI JSON entry to run your DAG you should either: | ||
|
||
* `Add params to your DAG <https://airflow.apache.org/docs/apache-airflow/stable/core-concepts/params.html#use-params-to-provide-a-trigger-ui-form>`_ | ||
* Enable the new configuration ``show_trigger_form_if_no_params`` to bring back old behaviour |