[wsm] IJPL-221118 Disable workspace separation by default in OptionsDirectoryProcessor

Use `false` as default value for `ide.workspace.model.per.environment.model.separation` registry flag in `OptionsDirectoryProcessor` to align behavior with other usages of the flag.

GitOrigin-RevId: 61b160ef70558ed6f8953376862c20d6ff8f4b1c
This commit is contained in:
Alexander Koshevoy
2025-12-02 15:55:29 +00:00
committed by intellij-monorepo-bot
parent bde7a3cae5
commit b2e512654c
@@ -21,7 +21,7 @@ internal fun transferOptionsToRemote(optionsDir: Path, project: Project): Path {
val eelDescriptor = project.getEelDescriptor()
val machine = project.getEelMachine()
if (!Registry.`is`("ide.workspace.model.per.environment.model.separation", true)) {
if (!Registry.`is`("ide.workspace.model.per.environment.model.separation", false)) {
return transferLocalContentToRemote(optionsDir, EelPathUtils.TransferTarget.Temporary(eelDescriptor))
}
val internalName = machine.internalName