From 5ebef5bdda4d5918b0a3ec401ce0fdcfec624e88 Mon Sep 17 00:00:00 2001 From: Themis Valtinos <73662635+themisvaltinos@users.noreply.github.com> Date: Fri, 6 Jun 2025 19:28:30 +0300 Subject: [PATCH] Chore: Fix readme flag of always_recreate_environment --- docs/guides/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/configuration.md b/docs/guides/configuration.md index a7be1b145b..361171d937 100644 --- a/docs/guides/configuration.md +++ b/docs/guides/configuration.md @@ -409,7 +409,7 @@ The `always_recreate_environment` boolean plan option can alter this behavior. W config = Config( model_defaults=ModelDefaultsConfig(dialect=), plan=PlanConfig( - always_compare_against_prod=True, + always_recreate_environment=True, ), ) ```