File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/kotlin/io/hstream/impl Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ tasks.withType<Javadoc> {
178178 (options as StandardJavadocDocletOptions ).addBooleanOption(" html5" , true )
179179 (options as StandardJavadocDocletOptions ).links(
180180 " https://docs.oracle.com/en/java/javase/11/docs/api/" ,
181- " https://javadoc.io/doc/com.google.guava/guava/latest/"
181+ // "https://javadoc.io/doc/com.google.guava/guava/latest/"
182182 )
183183 exclude(" io/hstream/impl/**" , " io/hstream/util/**" )
184184}
Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ class BufferedProducerKtImpl(
6666 val partitionKey = hStreamRecord.header.key
6767 val shardId = calculateShardIdByPartitionKey(partitionKey)
6868 if (! shardAppendBuffer.containsKey(shardId)) {
69- shardAppendBuffer[shardId] = LinkedList ()
70- shardAppendFutures[shardId] = LinkedList ()
69+ shardAppendBuffer[shardId] = ArrayList ()
70+ shardAppendFutures[shardId] = ArrayList ()
7171 shardAppendBytesSize[shardId] = 0
7272 if (batchSetting.ageLimit > 0 ) {
7373 timerServices[shardId] =
You can’t perform that action at this time.
0 commit comments