Skip to content

Commit 27a653f

Browse files
authored
Fix PostCommit Python Xlang IO Direct (#35491)
* Fix PostCommit Python Xlang IO Direct * Fix formatting
1 parent dc2a994 commit 27a653f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/beam_PostCommit_Python_Xlang_IO_Direct.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name: PostCommit Python Xlang IO Direct
1717

1818
on:
1919
schedule:
20-
- cron: '30 5/6 * * *'
20+
- cron: '30 4/6 * * *'
2121
pull_request_target:
2222
paths: ['release/trigger_all_tests.json', '.github/trigger_files/beam_PostCommit_Python_Xlang_IO_Direct.json']
2323
workflow_dispatch:

sdks/python/apache_beam/transforms/managed_iceberg_it_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
#
1717

1818
import os
19-
import time
2019
import unittest
20+
import uuid
2121

2222
import pytest
2323

@@ -53,7 +53,7 @@ def _create_row(self, num: int):
5353

5454
def test_write_read_pipeline(self):
5555
iceberg_config = {
56-
"table": "test_iceberg_write_read.test_" + str(int(time.time())),
56+
"table": "test_iceberg_write_read.test_" + uuid.uuid4().hex,
5757
"catalog_name": "default",
5858
"catalog_properties": {
5959
"type": "hadoop",

0 commit comments

Comments
 (0)