keith-turner commented on code in PR #4286:
URL: https://github.com/apache/accumulo/pull/4286#discussion_r1499546610
##########
test/src/main/java/org/apache/accumulo/test/manager/SuspendedTabletsIT.java:
##########
@@ -322,6 +325,20 @@ private void suspensionTestBody(TServerKiller
serverStopper) throws Exception {
Thread.sleep(1000);
ds = TabletLocations.retrieve(ctx, tableName);
}
+
Review Comment:
I currently am in the process of trying to understand this test. While
doing so I added the following at this loacation and ran it locally.
```java
log.info("hc:{} sc:{} ac:{}", ds.hostedCount, ds.suspendedCount,
ds.assignedCount);
```
I am seeing this output the following. So even before the tablet server is
stopped the suspend count is already zero.
```
hc:30 sc:0 ac:0
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]