fixed reference to sync executor

This commit is contained in:
Alec Aivazis 2016-05-06 10:16:42 -07:00
parent cff7666abe
commit 84834d1218

View File

@ -67,8 +67,7 @@ class Schema(object):
@property
def executor(self):
if not self._executor:
self._executor = Executor(
[SynchronousExecutionMiddleware()], map_type=OrderedDict)
self._executor = SyncExecutor()
return self._executor
@executor.setter