diff --git a/lbry/wallet/orchstr8/node.py b/lbry/wallet/orchstr8/node.py index 5842cac9d..ea041802a 100644 --- a/lbry/wallet/orchstr8/node.py +++ b/lbry/wallet/orchstr8/node.py @@ -214,6 +214,7 @@ class SPVNode: self.port = 50001 + node_number # avoid conflict with default daemon self.udp_port = self.port self.elastic_notifier_port = 19080 + node_number + self.elastic_services = f'localhost:9200/localhost:{self.elastic_notifier_port}' self.session_timeout = 600 self.stopped = True self.index_name = uuid4().hex @@ -235,7 +236,7 @@ class SPVNode: 'host': self.hostname, 'tcp_port': self.port, 'udp_port': self.udp_port, - 'elastic_notifier_port': self.elastic_notifier_port, + 'elastic_services': self.elastic_services, 'session_timeout': self.session_timeout, 'max_query_workers': 0, 'es_index_prefix': self.index_name, diff --git a/setup.py b/setup.py index 47f9fe137..109f9b5fc 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ setup( 'jsonschema==4.4.0', ], 'hub': [ - 'hub@git+https://github.com/lbryio/hub.git@9b178222296aecc7699cf82141c7a48fe866f22a' + 'hub@git+https://github.com/lbryio/hub.git@dcd4d7a7a8de3ab41d9fb859b910c3b962eaa2fe' ] }, classifiers=[