serve routing table API unconditionally

This commit is contained in:
Ashwin Bharambe 2024-10-09 22:48:31 -07:00
parent 8be385c994
commit dd9d34cf7d

View file

@ -288,8 +288,7 @@ def main(
apis_to_serve = set(impls.keys()) apis_to_serve = set(impls.keys())
for inf in builtin_automatically_routed_apis(): for inf in builtin_automatically_routed_apis():
if inf.router_api.value in apis_to_serve: apis_to_serve.add(inf.routing_table_api.value)
apis_to_serve.add(inf.routing_table_api.value)
apis_to_serve.add("inspect") apis_to_serve.add("inspect")
for api_str in apis_to_serve: for api_str in apis_to_serve: