Skip to content

Commit

Permalink
Code cleanup from #586 (#607)
Browse files Browse the repository at this point in the history
This is the last PR in the series, including code cleanup changes that
did not suit for previous PRs.
  • Loading branch information
rtar authored Apr 10, 2024
1 parent 64cb20d commit a7a3aab
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import cats.~>
import com.evolutiongaming.cassandra
import com.evolutiongaming.cassandra.sync.AutoCreate
import com.evolutiongaming.kafka.journal.Origin
import com.evolutiongaming.kafka.journal.cassandra.KeyspaceConfig
import com.evolutiongaming.kafka.journal.eventual.cassandra.CassandraSession

trait CassandraSync[F[_]] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object SchemaConfig {
replicationStrategy: ReplicationStrategyConfig = ReplicationStrategyConfig.Default,
autoCreate: Boolean = true) {

def toKeyspaceConfig: KeyspaceConfig = KeyspaceConfig(
private[cassandra] def toKeyspaceConfig: KeyspaceConfig = KeyspaceConfig(
name = this.name,
replicationStrategy = this.replicationStrategy,
autoCreate = this.autoCreate
Expand Down

0 comments on commit a7a3aab

Please sign in to comment.