Skip to content

Commit

Permalink
Default use_stage? to false
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanjos committed Jun 12, 2024
1 parent a8b7973 commit d507665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/absinthe/subscription/supervisor.ex
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defmodule Absinthe.Subscription.Supervisor do

pool_size = Keyword.get(opts, :pool_size, System.schedulers_online() * 2)
compress_registry? = Keyword.get(opts, :compress_registry?, true)
use_stage? = Keyword.get(opts, :use_stage?, true)
use_stage? = Keyword.get(opts, :use_stage?, false)

Supervisor.start_link(__MODULE__, {pubsub, pool_size, compress_registry?, use_stage?})
end
Expand Down

0 comments on commit d507665

Please sign in to comment.