We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e45183 commit c371638Copy full SHA for c371638
framework/fit/python/plugin/fit_py_registry_client/registry_address_service.py
@@ -92,6 +92,10 @@ def _process_address_by_mode() -> list:
92
else:
93
port = ""
94
return [_get_host() + port]
95
+ elif _get_registry_server_mode() == 'DIRECT':
96
+ return _get_registry_server_addresses()
97
+ else:
98
+ raise RuntimeError(f"unsupported registry server mode: {_get_registry_server_mode()}")
99
100
101
0 commit comments