Skip to content

Commit 84834d1

Browse files
committed
fixed reference to sync executor
1 parent cff7666 commit 84834d1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

graphene/core/schema.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ def T(self, _type):
6767
@property
6868
def executor(self):
6969
if not self._executor:
70-
self._executor = Executor(
71-
[SynchronousExecutionMiddleware()], map_type=OrderedDict)
70+
self._executor = SyncExecutor()
7271
return self._executor
7372

7473
@executor.setter

0 commit comments

Comments
 (0)