From f2cc60b999f994bca5bf003bd70b4feca3259ca1 Mon Sep 17 00:00:00 2001 From: rocky4570fft Date: Mon, 14 Aug 2017 00:41:26 +1000 Subject: [PATCH] satisfy the flake tests - doesnt like my flakey code :( --- moto/rds2/exceptions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/moto/rds2/exceptions.py b/moto/rds2/exceptions.py index 5e4b38ef..9c0c0144 100644 --- a/moto/rds2/exceptions.py +++ b/moto/rds2/exceptions.py @@ -59,6 +59,7 @@ class DBParameterGroupNotFoundError(RDSClientError): 'DBParameterGroupNotFound', 'DB Parameter Group {0} not found.'.format(db_parameter_group_name)) + class InvalidDBClusterStateFaultError(RDSClientError): def __init__(self, database_identifier): @@ -66,6 +67,7 @@ class InvalidDBClusterStateFaultError(RDSClientError): 'InvalidDBClusterStateFault', 'Invalid DB type, when trying to perform StopDBInstance on {0}e. See AWS RDS documentation on rds.stop_db_instance'.format(database_identifier)) + class InvalidDBInstanceStateError(RDSClientError): def __init__(self, database_identifier, istate):