Skip to content

Commit

Permalink
[SDCISA-16147, swisspost#583] Allow threading bugs to slip through.
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddenalpha committed Jun 6, 2024
1 parent 8397965 commit 5bda148
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ Future<List<KafkaProducerRecord<String, String>>> buildRecordsAsync(String topic
return Future.failedFuture(new ValidationException("Missing 'records' array"));
}
return vertx.executeBlocking(() -> {
assert !currentThread().getName().toUpperCase().contains("EVENTLOOP") : currentThread().getName();
long beginEpchMs = currentTimeMillis();
List<KafkaProducerRecord<String, String>> kafkaProducerRecords = new ArrayList<>(recordsArray.size());
for (int i = 0; i < recordsArray.size(); i++) {
Expand Down

0 comments on commit 5bda148

Please sign in to comment.