Revert "Give response back to the main thread on api calls"

This reverts commit 576bcb9f4b.

Conflicts:
	couchpotato/api.py
This commit is contained in:
Ruud
2014-12-20 18:49:35 +01:00
parent 538f51dd5b
commit dd24eb8893

View File

@@ -7,7 +7,6 @@ import urllib
from couchpotato.core.helpers.request import getParams
from couchpotato.core.logger import CPLog
from tornado.ioloop import IOLoop
from tornado.web import RequestHandler, asynchronous
@@ -34,7 +33,7 @@ def run_async(func):
def run_handler(route, kwargs, callback = None):
try:
res = api[route](**kwargs)
IOLoop.current().add_callback(callback, res, route)
callback(res, route)
except:
log.error('Failed doing api request "%s": %s', (route, traceback.format_exc()))
callback({'success': False, 'error': 'Failed returning results'}, route)