chethanuk-plutoflume commented on code in PR #24239: URL: https://github.com/apache/airflow/pull/24239#discussion_r923710798
########## tests/system/providers/amazon/aws/redshift/example_redshift_sql.py: ########## @@ -21,6 +21,11 @@ from airflow import DAG from airflow.models.baseoperator import chain from airflow.providers.amazon.aws.operators.redshift_sql import RedshiftSQLOperator +from airflow.utils.trigger_rule import TriggerRule +from tests.system.providers.amazon.aws.utils import set_env_id + +ENV_ID = set_env_id() +DAG_ID = 'example_redshift_sql' Review Comment: Resolved ########## tests/system/providers/amazon/aws/redshift/example_redshift_data_execute_sql.py: ########## @@ -22,7 +22,11 @@ from airflow.decorators import task from airflow.providers.amazon.aws.hooks.redshift_data import RedshiftDataHook from airflow.providers.amazon.aws.operators.redshift_data import RedshiftDataOperator +from airflow.utils.trigger_rule import TriggerRule +from tests.system.providers.amazon.aws.utils import set_env_id +ENV_ID = set_env_id() +DAG_ID = 'example_redshift_cluster' Review Comment: resolved -- 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]
