django-orchestra/orchestra/contrib/tasks/utils.py
2015-05-03 17:44:46 +00:00

13 lines
326 B
Python

import threading
from orchestra.utils.db import close_connection
# TODO import as_task
def run(method, *args, **kwargs):
async = kwargs.pop('async', True)
thread = threading.Thread(target=close_connection(method), args=args, kwargs=kwargs)
thread = Process(target=close_connection(counter))
thread.start()