Skip to content

Commit

Permalink
Increasing the netty thread for redis.
Browse files Browse the repository at this point in the history
  • Loading branch information
mansoor-sajjad committed Oct 17, 2024
1 parent 7801045 commit 4eb76a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/main/java/no/entur/antu/config/RedisClientConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public Config redissonConfig(
redisProperties.getPort()
);
redissonConfig
.setNettyThreads(64)
.useSingleServer()
.setAddress(address)
.setSslTruststore(new File(trustStoreFile).toURI().toURL())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,13 +324,13 @@ public NetexValidatorsRunner timetableDataValidatorsRunner(
);

List<DatasetValidator> netexTimetableDatasetValidators = List.of(
duplicateLineNameValidator
// stopPointsInVehicleJourneyValidator
duplicateLineNameValidator,
stopPointsInVehicleJourneyValidator
);

List<NetexDataCollector> commonDataCollectors = List.of(
lineInfoCollector,
// serviceJourneyStopsCollector,
serviceJourneyStopsCollector,
serviceJourneyInterchangeInfoCollector
);

Expand Down

0 comments on commit 4eb76a2

Please sign in to comment.