You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: geode-wan/src/distributedTest/java/org/apache/geode/internal/cache/wan/wancommand/AlterGatewaySenderCommandDUnitTest.java
+50Lines changed: 50 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -97,6 +97,7 @@ public void before() throws Exception {
97
97
98
98
@After
99
99
publicvoidafter() {
100
+
gfsh.executeAndAssertThat("destroy region --name=parentRegion").statusIsSuccess();
Copy file name to clipboardExpand all lines: geode-wan/src/distributedTest/java/org/apache/geode/internal/cache/wan/wancommand/CreateDestroyGatewaySenderCommandDUnitTest.java
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -378,6 +378,12 @@ public void testCreateDestroyParallelGatewaySender() {
378
378
"GatewaySender \"ln\" created on \"" + SERVER_4 + "\"",
379
379
"GatewaySender \"ln\" created on \"" + SERVER_5 + "\"");
380
380
381
+
gfsh.executeAndAssertThat("create region"
382
+
+ " --name=parentRegion"
383
+
+ " --type=PARTITION"
384
+
+ " --gateway-sender-id=ln").statusIsSuccess();
385
+
386
+
gfsh.executeAndAssertThat("destroy region --name=parentRegion").statusIsSuccess();
381
387
// destroy gateway sender and verify AEQs cleaned up
0 commit comments