Example #1
0
 def _make_http_servers(self, sconfigs):
     options = DummyOptions()
     options.server_configs = sconfigs
     options.rpcinterface_factories = [('dummy',DummyRPCInterfaceFactory,{})]
     supervisord = DummySupervisor()
     from supervisor.http import make_http_servers
     servers = make_http_servers(options, supervisord)
     try:
         for config, s in servers:
             s.close()
             socketfile = config.get('file')
             if socketfile is not None:
                 os.unlink(socketfile)
     finally:
         from asyncore import socket_map
         socket_map.clear()
     return servers
Example #2
0
 def _make_http_servers(self, sconfigs):
     options = DummyOptions()
     options.server_configs = sconfigs
     options.rpcinterface_factories = [('dummy',DummyRPCInterfaceFactory,{})]
     supervisord = DummySupervisor()
     from supervisor.http import make_http_servers
     servers = make_http_servers(options, supervisord)
     try:
         for config, s in servers:
             s.close()
             socketfile = config.get('file')
             if socketfile is not None:
                 os.unlink(socketfile)
     finally:
         from asyncore import socket_map
         socket_map.clear()
     return servers
 def make_http_servers(self, supervisord):
     from supervisor.http import make_http_servers
     return make_http_servers(self, supervisord)