poorbarcode commented on code in PR #16727:
URL: https://github.com/apache/pulsar/pull/16727#discussion_r927243138
##########
pulsar-transaction/coordinator/src/test/java/org/apache/pulsar/transaction/coordinator/impl/TxnLogBufferedWriterTest.java:
##########
@@ -165,19 +167,30 @@ public void testMainProcess(int batchedWriteMaxRecords,
int batchedWriteMaxSize,
}
OrderedExecutor orderedExecutor = OrderedExecutor.newBuilder()
.numThreads(5).name("tx-threads").build();
- ScheduledExecutorService scheduledExecutorService =
- Executors.newSingleThreadScheduledExecutor(new
DefaultThreadFactory("tx-scheduler-threads"));
JsonDataSerializer dataSerializer = new
JsonDataSerializer(eachDataBytesLen);
/**
* Execute test task.
* 1. Write many times.
* 2. Store the param-context and param-position of callback
function for verify.
*/
// Create TxLogBufferedWriter.
- TxnLogBufferedWriter txnLogBufferedWriter = new
TxnLogBufferedWriter<Integer>(
- managedLedger, orderedExecutor,
scheduledExecutorService,
- dataSerializer, batchedWriteMaxRecords,
batchedWriteMaxSize,
- batchedWriteMaxDelayInMillis, batchEnabled);
+ HashedWheelTimer transactionTimer = new HashedWheelTimer(new
DefaultThreadFactory("transaction-timer"),
+ 1, TimeUnit.MILLISECONDS);
+ ScheduledExecutorService transactionScheduledService =
+ Executors.newSingleThreadScheduledExecutor(new
DefaultThreadFactory("tx-scheduler-threads"));
Review Comment:
Already fixed
--
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]