Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions extensions/business/dauth/dauth_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,6 @@ def get_comms_host_pair(self):
raw_comms_seed = self.os_environ.get(seed_key, "")
comms_seed = raw_comms_seed.split(" ")

if self.cfg_dauth_log_response:
self.P(f"Comms seed for {seed_key}: {comms_seed} | Raw: '{raw_comms_seed}'")

if not comms_seed:
return_value = self.os_environ.get(key, None)
Expand All @@ -201,15 +199,19 @@ def get_comms_host_pair(self):
# round-robin selection
self.mqtt_seed_index = (self.mqtt_seed_index + 1) % len(comms_seed)
return_value = comms_seed[self.mqtt_seed_index]
if self.cfg_dauth_log_response:
self.P(f"Comms seed for {seed_key}: {comms_seed} | Raw: '{raw_comms_seed}'. Selected '{return_value}' ({self.mqtt_seed_index})")
# end if
return key, return_value


def fill_dauth_data(self,
dauth_data,
requester_node_address,
is_node=False,
sender_eth_address=None):
def fill_dauth_data(
self,
dauth_data,
requester_node_address,
is_node=False,
sender_eth_address=None
):
"""
Fill the data with the authentication data.
"""
Expand Down
2 changes: 2 additions & 0 deletions extensions/business/r1fs/r1fs_manager_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

'R1FS_VERBOSE' : 11,

'REQUEST_TIMEOUT' : None, # in seconds, None means no timeout

'VALIDATION_RULES': {
**BasePlugin.CONFIG['VALIDATION_RULES'],
},
Expand Down
2 changes: 1 addition & 1 deletion ver.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VER__ = '2.9.980'
__VER__ = '2.9.990'
Loading