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

damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 27a653f2d3e Fix PostCommit Python Xlang IO Direct (#35491)
27a653f2d3e is described below

commit 27a653f2d3e7a883c122ccc9b08aed2d61c22c22
Author: akashorabek <[email protected]>
AuthorDate: Tue Jul 1 18:44:46 2025 +0500

    Fix PostCommit Python Xlang IO Direct (#35491)
    
    * Fix PostCommit Python Xlang IO Direct
    
    * Fix formatting
---
 .github/workflows/beam_PostCommit_Python_Xlang_IO_Direct.yml  | 2 +-
 sdks/python/apache_beam/transforms/managed_iceberg_it_test.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/beam_PostCommit_Python_Xlang_IO_Direct.yml 
b/.github/workflows/beam_PostCommit_Python_Xlang_IO_Direct.yml
index 35c250e8627..c5781ee6a66 100644
--- a/.github/workflows/beam_PostCommit_Python_Xlang_IO_Direct.yml
+++ b/.github/workflows/beam_PostCommit_Python_Xlang_IO_Direct.yml
@@ -17,7 +17,7 @@ name: PostCommit Python Xlang IO Direct
 
 on:
   schedule:
-    - cron: '30 5/6 * * *'
+    - cron: '30 4/6 * * *'
   pull_request_target:
     paths: ['release/trigger_all_tests.json', 
'.github/trigger_files/beam_PostCommit_Python_Xlang_IO_Direct.json']
   workflow_dispatch:
diff --git a/sdks/python/apache_beam/transforms/managed_iceberg_it_test.py 
b/sdks/python/apache_beam/transforms/managed_iceberg_it_test.py
index 4d9790f2dd5..b1e53a79bd4 100644
--- a/sdks/python/apache_beam/transforms/managed_iceberg_it_test.py
+++ b/sdks/python/apache_beam/transforms/managed_iceberg_it_test.py
@@ -16,8 +16,8 @@
 #
 
 import os
-import time
 import unittest
+import uuid
 
 import pytest
 
@@ -53,7 +53,7 @@ class ManagedIcebergIT(unittest.TestCase):
 
   def test_write_read_pipeline(self):
     iceberg_config = {
-        "table": "test_iceberg_write_read.test_" + str(int(time.time())),
+        "table": "test_iceberg_write_read.test_" + uuid.uuid4().hex,
         "catalog_name": "default",
         "catalog_properties": {
             "type": "hadoop",

Reply via email to