You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by el...@apache.org on 2022/08/21 07:42:12 UTC

[airflow] branch main updated: Fix RDS system test (#25839)

This is an automated email from the ASF dual-hosted git repository.

eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new e1ace8d018 Fix RDS system test (#25839)
e1ace8d018 is described below

commit e1ace8d018e94a13e258a9fbde3544440660f8c0
Author: Vincent <97...@users.noreply.github.com>
AuthorDate: Sun Aug 21 03:41:46 2022 -0400

    Fix RDS system test (#25839)
---
 airflow/providers/amazon/aws/operators/rds.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/providers/amazon/aws/operators/rds.py b/airflow/providers/amazon/aws/operators/rds.py
index 6787caf20a..54d4896e12 100644
--- a/airflow/providers/amazon/aws/operators/rds.py
+++ b/airflow/providers/amazon/aws/operators/rds.py
@@ -278,7 +278,7 @@ class RdsCopyDbSnapshotOperator(RdsBaseOperator):
             self._await_status(
                 item_type,
                 self.target_db_snapshot_identifier,
-                wait_statuses=['copying'],
+                wait_statuses=['creating', 'copying'],
                 ok_statuses=['available'],
             )
         return copy_response