"git@developer.sourcefind.cn:change/sglang.git" did not exist on "40e0082d8d921ee57e267aaa306ba5d605040577"
Commit f6ac836d authored by Jonas Kaufmann's avatar Jonas Kaufmann
Browse files

orchestration/simulation/Simulator.supported_socket_types(): actually return set and not dict

parent 9078f477
...@@ -284,7 +284,7 @@ class Simulator(utils_base.IdObj, abc.ABC): ...@@ -284,7 +284,7 @@ class Simulator(utils_base.IdObj, abc.ABC):
def supported_socket_types( def supported_socket_types(
self, interface: sys_conf.Interface self, interface: sys_conf.Interface
) -> set[inst_socket.SockType]: ) -> set[inst_socket.SockType]:
return {} return set()
# Sockets to be cleaned up: always the CONNECTING sockets # Sockets to be cleaned up: always the CONNECTING sockets
# pylint: disable=unused-argument # pylint: disable=unused-argument
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment