Skip to content

Commit

Permalink
Added native support for the HA jDiameter by adding it to the Diamete…
Browse files Browse the repository at this point in the history
…rProcessor
  • Loading branch information
Eddie Carpenter committed Nov 14, 2024
1 parent ae37409 commit e7e82ab
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 29 deletions.

This file was deleted.

3 changes: 2 additions & 1 deletion quarkus-diameter/deployment/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
import org.jdiameter.common.impl.statistic.StatisticProcessorImpl;
import org.jdiameter.common.impl.timer.LocalTimerFacilityImpl;
import org.jdiameter.common.impl.validation.DictionaryImpl;
import org.jdiameter.impl.ha.data.CachedSessionDatasourceImpl;
import org.jdiameter.impl.ha.timer.ReplicatedTimerFacilityImpl;
import org.jdiameter.server.impl.*;
import org.jdiameter.server.impl.agent.AgentConfigurationImpl;
import org.jdiameter.server.impl.agent.ProxyAgentImpl;
Expand Down Expand Up @@ -116,7 +118,9 @@ ReflectiveClassBuildItem reflection()
AssemblerImpl.class,
MessageParser.class,
WeightedRoundRobinRouter.class,
WeightedLeastConnectionsRouter.class
WeightedLeastConnectionsRouter.class,
CachedSessionDatasourceImpl.class,
ReplicatedTimerFacilityImpl.class
)
.methods()
.fields()
Expand Down
7 changes: 6 additions & 1 deletion quarkus-diameter/runtime/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down Expand Up @@ -37,6 +38,10 @@
<groupId>io.quarkiverse.jdiameter</groupId>
<artifactId>jdiameter-impl</artifactId>
</dependency>
<dependency>
<groupId>io.quarkiverse.jdiameter</groupId>
<artifactId>jdiameter-ha-impl</artifactId>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit e7e82ab

Please sign in to comment.