This is an automated email from the ASF dual-hosted git repository.
chamikara pushed a commit to branch transform_service_test_suite
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/transform_service_test_suite
by this push:
new 60a846b5a27 Updates
60a846b5a27 is described below
commit 60a846b5a2741c4d3431817de039e17e6b1f0bd8
Author: Chamikara Jayalath <[email protected]>
AuthorDate: Tue Mar 5 22:59:23 2024 -0800
Updates
---
sdks/python/apache_beam/runners/portability/expansion_service_main.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/sdks/python/apache_beam/runners/portability/expansion_service_main.py
b/sdks/python/apache_beam/runners/portability/expansion_service_main.py
index 294258ba355..063e4406e65 100644
--- a/sdks/python/apache_beam/runners/portability/expansion_service_main.py
+++ b/sdks/python/apache_beam/runners/portability/expansion_service_main.py
@@ -47,13 +47,13 @@ def main(argv):
print("******** xyz123 Files and directories in '", path, "' :")
print(dir_list)
- print1 = "******** xyz123 Files and directories in '", path, "' :" +
str(dir_list)
+ print1 = "******** xyz123 Files and directories in '" + path + "' :" +
str(dir_list)
path = "/dependencies_volume/"
dir_list = os.listdir(path)
print("******** xyz123 Files and directories in '", path, "' :")
print(dir_list)
- print2 = "******** xyz123 Files and directories in '", path, "' :" +
str(dir_list)
+ print2 = "******** xyz123 Files and directories in '" + path + "' :" +
str(dir_list)
raise Exception(print1 + " " + print2)