From b7359e7b0df6c687193fed062376c60c822541e4 Mon Sep 17 00:00:00 2001 From: Alexander Kukushkin Date: Mon, 30 May 2016 12:40:52 +0200 Subject: [PATCH] Rollback all changes to basic_replication.feature since I moved all functionality to patroni_api.feature --- features/basic_replication.feature | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/basic_replication.feature b/features/basic_replication.feature index 0f5799e0..be192715 100644 --- a/features/basic_replication.feature +++ b/features/basic_replication.feature @@ -1,5 +1,5 @@ Feature: basic replication - We should check that the basic bootstrapping, replication, failover and dyncamic configuration works. + We should check that the basic bootstrapping, replication and failover works. Scenario: check replication of a single table Given I start postgres0 @@ -9,9 +9,9 @@ Feature: basic replication Then table foo is present on postgres1 after 20 seconds Scenario: check the basic failover - And I kill postgres0 + When I kill postgres0 Then postgres1 role is the primary after 32 seconds When I start postgres0 Then postgres0 role is the secondary after 20 seconds When I add the table bar to postgres1 - Then table bar is present on postgres0 after 10 seconds + Then table bar is present on postgres0 after 20 seconds