From da792f21d3518cacdb3a0236c7cc0528f964c4d1 Mon Sep 17 00:00:00 2001 From: Derrick Williams Date: Mon, 20 Jul 2026 17:56:34 +0000 Subject: [PATCH 1/2] test codeql --- .github/workflows/beam_PreCommit_GHA.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/beam_PreCommit_GHA.yml b/.github/workflows/beam_PreCommit_GHA.yml index 7ad6b5e67583..13bcef3e41e2 100644 --- a/.github/workflows/beam_PreCommit_GHA.yml +++ b/.github/workflows/beam_PreCommit_GHA.yml @@ -93,3 +93,4 @@ jobs: uses: ./.github/actions/gradle-command-self-hosted-action with: gradle-command: :beam-test-gha:preCommit + From 5c09eecf1d54e1f956f094f4b109252eb133ffe9 Mon Sep 17 00:00:00 2001 From: Derrick Williams Date: Mon, 20 Jul 2026 17:57:43 +0000 Subject: [PATCH 2/2] add py --- sdks/python/apache_beam/yaml/yaml_io.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdks/python/apache_beam/yaml/yaml_io.py b/sdks/python/apache_beam/yaml/yaml_io.py index bf0b0a4c6ec2..6856f014193e 100644 --- a/sdks/python/apache_beam/yaml/yaml_io.py +++ b/sdks/python/apache_beam/yaml/yaml_io.py @@ -824,6 +824,7 @@ def write_to_mongodb( batch_size: Number of documents per bulk_write to MongoDB. """ def row_to_dict(value): + if value is None: return None if hasattr(value, '_asdict'):