pluggable executor needs to be instantiated

This commit is contained in:
Ilya Kalinin 2015-08-28 14:02:22 -07:00
Родитель 3f38dec9bf
Коммит f63ad66398
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -21,7 +21,7 @@ else:
for _executor in _executors:
globals()[_executor.__name__] = _executor
if _EXECUTOR in globals():
DEFAULT_EXECUTOR = globals()[_EXECUTOR]
DEFAULT_EXECUTOR = globals()[_EXECUTOR]()
else:
raise AirflowException("Executor {0} not supported.".format(_EXECUTOR))