This is an automated email from the ASF dual-hosted git repository.

vterentev pushed a commit to branch fix-dataset-path
in repository https://gitbox.apache.org/repos/asf/beam.git

commit b2954eef3b5eb7be02c0517c65cd2b5ae858eae7
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Thu Oct 2 20:45:35 2025 +0400

    Fix playground example dataset format value
---
 playground/infrastructure/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/playground/infrastructure/models.py 
b/playground/infrastructure/models.py
index 0c7311e0f77..a6beeb3e58f 100644
--- a/playground/infrastructure/models.py
+++ b/playground/infrastructure/models.py
@@ -199,7 +199,7 @@ class Tag(BaseModel):
     @validator("datasets")
     def dataset_file_name(cls, datasets):
         for dataset_id, dataset in datasets.items():
-            dataset.file_name = f"{dataset_id}.{dataset.format}"
+            dataset.file_name = f"{dataset_id}.{dataset.format.value}"
             if dataset.location == DatasetLocation.LOCAL:
                 dataset_path = os.path.join(
                     RepoProps.REPO_DATASETS_PATH, dataset.file_name

Reply via email to