Skip to content

Commit 047f896

Browse files
authored
Fix PostCommit TransformService Direct job (#34375)
* Fix address in expansion service * Change address to 0.0.0.0
1 parent 7e88d96 commit 047f896

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdks/python/apache_beam/runners/portability/expansion_service_main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def main(argv):
5555
with fully_qualified_named_transform.FullyQualifiedNamedTransform.with_filter(
5656
known_args.fully_qualified_name_glob):
5757

58-
address = 'localhost:{}'.format(known_args.port)
58+
address = '0.0.0.0:{}'.format(known_args.port)
5959
server = grpc.server(thread_pool_executor.shared_unbounded_instance())
6060
if known_args.serve_loopback_worker:
6161
beam_fn_api_pb2_grpc.add_BeamFnExternalWorkerPoolServicer_to_server(

0 commit comments

Comments
 (0)