This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit ca3d8b7c763765bd987ce344310562c9d5da54dd Author: Benoit Tellier <[email protected]> AuthorDate: Wed Oct 2 11:06:28 2019 +0700 JAMES-2904 Move ResilientClusterProvider to backend --- .../james/backends/cassandra/init}/ResilientClusterProvider.java | 4 +--- .../java/org/apache/james/modules/mailbox/CassandraSessionModule.java | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/ResilientClusterProvider.java b/backends-common/cassandra/src/main/java/org/apache/james/backends/cassandra/init/ResilientClusterProvider.java similarity index 95% rename from server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/ResilientClusterProvider.java rename to backends-common/cassandra/src/main/java/org/apache/james/backends/cassandra/init/ResilientClusterProvider.java index 979aa57..150152b 100644 --- a/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/ResilientClusterProvider.java +++ b/backends-common/cassandra/src/main/java/org/apache/james/backends/cassandra/init/ResilientClusterProvider.java @@ -17,7 +17,7 @@ * under the License. * ****************************************************************/ -package org.apache.james.modules.mailbox; +package org.apache.james.backends.cassandra.init; import java.time.Duration; import java.time.LocalDateTime; @@ -28,8 +28,6 @@ import javax.inject.Inject; import javax.inject.Provider; import javax.inject.Singleton; -import org.apache.james.backends.cassandra.init.ClusterBuilder; -import org.apache.james.backends.cassandra.init.ClusterWithKeyspaceCreatedFactory; import org.apache.james.backends.cassandra.init.configuration.ClusterConfiguration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/CassandraSessionModule.java b/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/CassandraSessionModule.java index 11ce6ad..7f097b3 100644 --- a/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/CassandraSessionModule.java +++ b/server/container/guice/cassandra-guice/src/main/java/org/apache/james/modules/mailbox/CassandraSessionModule.java @@ -25,6 +25,7 @@ import org.apache.commons.configuration2.Configuration; import org.apache.commons.configuration2.ex.ConfigurationException; import org.apache.james.backends.cassandra.components.CassandraModule; import org.apache.james.backends.cassandra.init.CassandraZonedDateTimeModule; +import org.apache.james.backends.cassandra.init.ResilientClusterProvider; import org.apache.james.backends.cassandra.init.SessionWithInitializedTablesFactory; import org.apache.james.backends.cassandra.init.configuration.CassandraConfiguration; import org.apache.james.backends.cassandra.init.configuration.ClusterConfiguration; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
