maytasm commented on a change in pull request #9724:
URL: https://github.com/apache/druid/pull/9724#discussion_r411910691
##########
File path:
integration-tests/src/main/java/org/apache/druid/testing/utils/KinesisAdminClient.java
##########
@@ -129,18 +132,28 @@ public void updateShardCount(String streamName, int
newShardCount, boolean block
}
}
+ @Override
public boolean isStreamActive(String streamName)
{
StreamDescription streamDescription = getStreamDescription(streamName);
return verifyStreamStatus(streamDescription, StreamStatus.ACTIVE);
}
+ @Override
public int getStreamShardCount(String streamName)
{
StreamDescription streamDescription = getStreamDescription(streamName);
return getStreamShardCount(streamDescription);
}
+ @Override
+ public boolean verfiyShardCountUpdated(String streamName, int oldShardCount,
int newShardCount)
+ {
+ int actualShardCount = getStreamShardCount(streamName);
+ return actualShardCount == oldShardCount + newShardCount;
Review comment:
Done
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]