@@ -135,7 +135,6 @@ public void RetryExecuteCancel(string cnnString, SqlRetryLogicBaseProvider provi
135
135
}
136
136
}
137
137
138
- [ ActiveIssue ( "14588" ) ]
139
138
[ ConditionalTheory ( typeof ( DataTestUtility ) , nameof ( DataTestUtility . IsNotAzureSynapse ) , nameof ( DataTestUtility . AreConnStringsSetup ) ) ]
140
139
[ MemberData ( nameof ( RetryLogicTestHelper . GetConnectionAndRetryStrategyInvalidCommand ) , parameters : new object [ ] { 5 } , MemberType = typeof ( RetryLogicTestHelper ) , DisableDiscoveryEnumeration = true ) ]
141
140
public void RetryExecuteWithTransScope ( string cnnString , SqlRetryLogicBaseProvider provider )
@@ -261,7 +260,6 @@ public void RetryExecuteUnauthorizedSqlStatementDML(string cnnString, SqlRetryLo
261
260
}
262
261
}
263
262
264
- [ ActiveIssue ( "14325" ) ]
265
263
// avoid creating a new database in Azure
266
264
[ ConditionalTheory ( typeof ( DataTestUtility ) , nameof ( DataTestUtility . IsNotAzureServer ) , nameof ( DataTestUtility . IsNotAzureSynapse ) , nameof ( DataTestUtility . AreConnStringsSetup ) ) ]
267
265
[ MemberData ( nameof ( RetryLogicTestHelper . GetConnectionAndRetryStrategyDropDB ) , parameters : new object [ ] { 5 } , MemberType = typeof ( RetryLogicTestHelper ) , DisableDiscoveryEnumeration = true ) ]
@@ -283,7 +281,7 @@ public void DropDatabaseWithActiveConnection(string cnnString, SqlRetryLogicBase
283
281
cnn1 . Open ( ) ;
284
282
cmd . Connection = cnn1 ;
285
283
// Create the database and wait until it is finalized.
286
- cmd . CommandText = $ "CREATE DATABASE [{ database } ]; \n WHILE(NOT EXISTS(SELECT 1 FROM sys.databases WHERE name = '{ database } ')) \n WAITFOR DELAY '00:00:10 ' ";
284
+ cmd . CommandText = $ "CREATE DATABASE [{ database } ]; \n WHILE(NOT EXISTS(SELECT 1 FROM sys.databases WHERE name = '{ database } ')) \n WAITFOR DELAY '00:00:01 ' ";
287
285
cmd . ExecuteNonQuery ( ) ;
288
286
289
287
try
@@ -292,7 +290,7 @@ public void DropDatabaseWithActiveConnection(string cnnString, SqlRetryLogicBase
292
290
cnn2 . Open ( ) ;
293
291
cnn3 . Open ( ) ;
294
292
295
- // kill the active connection to the database after the first faliure .
293
+ // kill the active connection to the database after the first failure .
296
294
provider . Retrying += ( s , e ) =>
297
295
{
298
296
currentRetries = e . RetryCount ;
0 commit comments