From 71d62fd88eacd857ae8361a8f0b1f0b33f949c90 Mon Sep 17 00:00:00 2001 From: Maxime Armstrong Date: Thu, 2 Jan 2025 10:38:11 -0500 Subject: [PATCH] Update preview warning --- python_modules/dagster/dagster/_utils/warnings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_modules/dagster/dagster/_utils/warnings.py b/python_modules/dagster/dagster/_utils/warnings.py index 224af430f8bb1..664d77996f8ff 100644 --- a/python_modules/dagster/dagster/_utils/warnings.py +++ b/python_modules/dagster/dagster/_utils/warnings.py @@ -28,7 +28,7 @@ def preview_warning( return warnings.warn( - f"{subject} is in currently, with ongoing updates, and not yet optimized for production use. " + f"{subject} is currently in preview, with ongoing updates, and not yet optimized for production use. " f"This may break in future versions, even between dot releases." + ((" " + additional_warn_text) if additional_warn_text else ""), category=PreviewWarning,