File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
airbyte-tests/src/acceptanceTests/java/io/airbyte/test/acceptance Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -688,9 +688,6 @@ void testDeleteConnection() throws Exception {
688
688
// connectionIds.remove(connectionId); // todo remove
689
689
testHarness .removeConnection (connectionId );
690
690
691
- LOGGER .info ("Waiting for connection to be deleted..." );
692
- Thread .sleep (5000 );
693
-
694
691
ConnectionStatus connectionStatus =
695
692
apiClient .getConnectionApi ().getConnection (new ConnectionIdRequestBody ().connectionId (connectionId )).getStatus ();
696
693
assertEquals (ConnectionStatus .DEPRECATED , connectionStatus );
@@ -710,9 +707,6 @@ void testDeleteConnection() throws Exception {
710
707
// we should still be able to delete the connection when the temporal workflow is in this state
711
708
apiClient .getConnectionApi ().deleteConnection (new ConnectionIdRequestBody ().connectionId (connectionId ));
712
709
713
- LOGGER .info ("Waiting for connection to be deleted..." );
714
- Thread .sleep (5000 );
715
-
716
710
connectionStatus = apiClient .getConnectionApi ().getConnection (new ConnectionIdRequestBody ().connectionId (connectionId )).getStatus ();
717
711
assertEquals (ConnectionStatus .DEPRECATED , connectionStatus );
718
712
}
You can’t perform that action at this time.
0 commit comments