dirrao commented on PR #39743: URL: https://github.com/apache/airflow/pull/39743#issuecomment-2124766877
@o-nikolas and @ferruzzi We have marked some of the fields as deprecated. To resolve warnings we have made these code changes. As per the recommendation from @Taragolis, to fix the operator code or adjust the operator default values at the time of removing deprecated code. ``` [tests/system/providers/amazon/aws/example_emr.py](https://github.com/apache/airflow/tree/main/tests/system/providers/amazon/aws/example_emr.py) tests/system/providers/amazon/aws/example_emr.py:143: airflow.exceptions.AirflowProviderDeprecationWarning:The parameter waiter_check_interval_seconds has been deprecated to standardize naming conventions. Please use waiter_delay instead. In the future this will default to None and defer to the waiter's default value. [tests/system/providers/amazon/aws/example_emr_notebook_execution.py](https://github.com/apache/airflow/tree/main/tests/system/providers/amazon/aws/example_emr_notebook_execution.py) tests/system/providers/amazon/aws/example_emr_notebook_execution.py:54: airflow.exceptions.AirflowProviderDeprecationWarning:The parameter waiter_check_interval_seconds has been deprecated to standardize naming conventions. Please use waiter_delay instead. In the future this will default to None and defer to the waiter's default value. tests/system/providers/amazon/aws/example_emr_notebook_execution.py:54: airflow.exceptions.AirflowProviderDeprecationWarning:The parameter waiter_countdown has been deprecated to standardize naming conventions. Please use waiter_max_attempts instead. In the future this will default to None and defer to the waiter's default value. tests/system/providers/amazon/aws/example_emr_notebook_execution.py:75: airflow.exceptions.AirflowProviderDeprecationWarning:The parameter waiter_check_interval_seconds has been deprecated to standardize naming conventions. Please use waiter_delay instead. In the future this will default to None and defer to the waiter's default value. tests/system/providers/amazon/aws/example_emr_notebook_execution.py:75: airflow.exceptions.AirflowProviderDeprecationWarning:The parameter waiter_countdown has been deprecated to standardize naming conventions. Please use waiter_max_attempts instead. In the future this will default to None and defer to the waiter's default value. tests/system/providers/amazon/aws/example_emr_notebook_execution.py:87: airflow.exceptions.AirflowProviderDeprecationWarning:The parameter waiter_check_interval_seconds has been deprecated to standardize naming conventions. Please use waiter_delay instead. In the future this will default to None and defer to the waiter's default value. tests/system/providers/amazon/aws/example_emr_notebook_execution.py:87: airflow.exceptions.AirflowProviderDeprecationWarning:The parameter waiter_countdown has been deprecated to standardize naming conventions. Please use waiter_max_attempts instead. In the future this will default to None and defer to the waiter's default value. ``` -- 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]
