Skip to content

Commit

Permalink
Fix http_port
Browse files Browse the repository at this point in the history
  • Loading branch information
LuQQiu committed Feb 21, 2024
1 parent bd3de15 commit ebb7623
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion alluxio/alluxio_file_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,10 @@ def __init__(

self.page_size = humanfriendly.parse_size(page_size, binary=True)
self.hash_provider = ConsistentHashProvider(
worker_hosts=worker_hosts,
etcd_hosts=etcd_hosts,
etcd_port=int(etcd_port),
worker_hosts=worker_hosts,
worker_http_port=int(http_port),
hash_node_per_worker=hash_node_per_worker,
options=options,
logger=self.logger,
Expand Down

0 comments on commit ebb7623

Please sign in to comment.