Skip to content

Commit

Permalink
Merge pull request #2069 from rmosolgo/error-bubbling-false
Browse files Browse the repository at this point in the history
Make error_bubbling=false the schema default
  • Loading branch information
Robert Mosolgo authored Jan 23, 2019
2 parents e66e7bc + 2edb551 commit 046eecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/graphql/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def initialize
@introspection_namespace = nil
@introspection_system = nil
@interpeter = false
@error_bubbling = true
@error_bubbling = false
end

# @return [Boolean] True if using the new {GraphQL::Execution::Interpreter}
Expand Down

0 comments on commit 046eecd

Please sign in to comment.