Skip to content

Commit

Permalink
Merge pull request #241 from an-tex/index-settings-override
Browse files Browse the repository at this point in the history
allow indexsettings override
  • Loading branch information
an-tex authored Aug 4, 2023
2 parents 008cf0f + 0b08760 commit 64a7554
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions elastic/core/src/main/scala/Evolver.scala
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ object Evolver extends ClusterComponent.Singleton {
), properties = index.mappings :+ KeywordField(Index.discriminator))
)
.analysis(index.analysis)
.settings(index.settings)
}

def default: Behaviors.Receive[Command] = Behaviors.receiveMessagePartial {
Expand Down
2 changes: 2 additions & 0 deletions elastic/core/src/main/scala/Index.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ abstract class Index(

val analysis = Analysis(Nil)

val settings = Map.empty[String, Any]

val batchUpdates = Seq.empty[BatchUpdate[Latest]]

final lazy val mappingsHash = mappings.toString.hashCode.toString
Expand Down

0 comments on commit 64a7554

Please sign in to comment.