Revision b3a197715e4dcd194100333dc31dc4328be9341d authored by James Rodewig on 12 May 2021, 18:26:22 UTC, committed by GitHub on 12 May 2021, 18:26:22 UTC
With #70908, you can now close a write index in 7.12.1 and later versions.
This removes an outdated reference from the data stream overview docs.
1 parent 7909d3b
Raw File
build.gradle
import org.elasticsearch.gradle.testclusters.TestClustersPlugin

subprojects { Project subproj ->
  plugins.withType(TestClustersPlugin).whenPluginAdded {
    testClusters.all {
      testDistribution = 'DEFAULT'
    }
  }
}
back to top