Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
reachfh committed Jan 2, 2024
1 parent 4687e93 commit 7f697c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/absinthe_federation_example/application.ex
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ defmodule AbsintheFederationExample.Application do
roles = Application.get_env(@app, :roles, [:api])
Logger.info("Starting with roles: #{inspect(roles)}")

children = [
children =
List.flatten([
AbsintheFederationExampleWeb.Telemetry,
AbsintheFederationExample.Repo,
{DNSCluster, query: Application.get_env(:phoenix_container_example, :dns_cluster_query) || :ignore},
{Phoenix.PubSub, name: PhoenixContainerExample.PubSub},
# Start the Finch HTTP client for sending emails
{Finch, name: PhoenixContainerExample.Finch},
AbsintheFederationExampleWeb.Endpoint
AbsintheFederationExampleWeb.Endpoint,
cluster_supervisor()
])

Expand Down

0 comments on commit 7f697c4

Please sign in to comment.