Skip to content

Commit 633a8a2

Browse files
committed
Tracing should be off by default
1 parent 12dde37 commit 633a8a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql/execution/executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def subscribe(*args, **kwargs):
3232
def execute(schema, document_ast, root_value=None, context_value=None,
3333
variable_values=None, operation_name=None, executor=None,
3434
return_promise=False, middleware=None, allow_subscriptions=False,
35-
tracing=True):
35+
tracing=False):
3636
assert schema, 'Must provide schema'
3737
assert isinstance(schema, GraphQLSchema), (
3838
'Schema must be an instance of GraphQLSchema. Also ensure that there are ' +

0 commit comments

Comments
 (0)