forked from LBRYCommunity/lbry-sdk
Bump hub to latest, getting fix for TX negative caching issue and others.
This commit is contained in:
parent
419b5b45f2
commit
b9d25c6d01
2 changed files with 3 additions and 2 deletions
|
@ -214,6 +214,7 @@ class SPVNode:
|
||||||
self.port = 50001 + node_number # avoid conflict with default daemon
|
self.port = 50001 + node_number # avoid conflict with default daemon
|
||||||
self.udp_port = self.port
|
self.udp_port = self.port
|
||||||
self.elastic_notifier_port = 19080 + node_number
|
self.elastic_notifier_port = 19080 + node_number
|
||||||
|
self.elastic_services = f'localhost:9200/localhost:{self.elastic_notifier_port}'
|
||||||
self.session_timeout = 600
|
self.session_timeout = 600
|
||||||
self.stopped = True
|
self.stopped = True
|
||||||
self.index_name = uuid4().hex
|
self.index_name = uuid4().hex
|
||||||
|
@ -235,7 +236,7 @@ class SPVNode:
|
||||||
'host': self.hostname,
|
'host': self.hostname,
|
||||||
'tcp_port': self.port,
|
'tcp_port': self.port,
|
||||||
'udp_port': self.udp_port,
|
'udp_port': self.udp_port,
|
||||||
'elastic_notifier_port': self.elastic_notifier_port,
|
'elastic_services': self.elastic_services,
|
||||||
'session_timeout': self.session_timeout,
|
'session_timeout': self.session_timeout,
|
||||||
'max_query_workers': 0,
|
'max_query_workers': 0,
|
||||||
'es_index_prefix': self.index_name,
|
'es_index_prefix': self.index_name,
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -57,7 +57,7 @@ setup(
|
||||||
'jsonschema==4.4.0',
|
'jsonschema==4.4.0',
|
||||||
],
|
],
|
||||||
'hub': [
|
'hub': [
|
||||||
'hub@git+https://github.com/lbryio/hub.git@9b178222296aecc7699cf82141c7a48fe866f22a'
|
'hub@git+https://github.com/lbryio/hub.git@dcd4d7a7a8de3ab41d9fb859b910c3b962eaa2fe'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|
Loading…
Reference in a new issue