Esempio n. 1
0
def start_services():
    """ Start all services including http, and cron """
    start_internal()
    # Start the WSGI server.
    wsgi_server.start_service()
    # Start the main cron thread.
    if not openerp.evented:
        cron.start_service()
Esempio n. 2
0
def start_services():
    """ Start all services including http, and cron """
    start_internal()
    # Start the WSGI server.
    wsgi_server.start_service()
    # Start the main cron thread.
    if not openerp.evented:
        cron.start_service()
Esempio n. 3
0
def start_services():
    """ Start all services including http, netrpc and cron """
    start_internal()
    # Initialize the NETRPC server.
    netrpc_server.start_service()
    # Start the WSGI server.
    wsgi_server.start_service()
    # Start the main cron thread.
    cron.start_service()
Esempio n. 4
0
def start_services():
    """ Start all services including http, netrpc and cron """
    start_internal()
    # Initialize the NETRPC server.
    netrpc_server.start_service()
    # Start the WSGI server.
    wsgi_server.start_service()
    # Start the main cron thread.
    cron.start_service()