raphaelauv commented on issue #41787: URL: https://github.com/apache/airflow/issues/41787#issuecomment-2321126830
`problem of a scrolling-panel inside a scroll area` yes this is a record -> [Screencast from 30-08-2024 14:41:19.webm](https://github.com/user-attachments/assets/2e4e2eb8-2c0a-4471-b7a3-3ed45dd05e48) ```python from airflow import DAG from airflow.models.param import Param from airflow.operators.python import PythonOperator from airflow.utils.dates import days_ago with DAG( dag_id=f"test", start_date=days_ago(1), schedule_interval=None, params={ "aaaaaaaaa": Param("000000_3600", type="string"), "vvvvvvvvvv": Param("aa", type="string"), "xxxxxxxxxxx": Param("30", type="string"), "eeeeeeeeee": Param("300", type="string"), "sssssssssss": Param(False, type="boolean"), "mmmmmmmm": Param(True, type="boolean"), "kkkkkkkkkk": Param(False, type="boolean"), "wwwwwwwwwww": Param(False, type="boolean"), } ): def toto(): import time time.sleep(100) PythonOperator(task_id="aaa",python_callable=toto) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
