From 29d8881c5447e636236f1664ea1ca5f9e8c2543e Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 30 Jun 2025 12:33:11 -0700 Subject: [PATCH] fix(seeds): remove unused vars (#9731) This fixes some warnings introduced by #9692. --- elixir/apps/domain/priv/repo/seeds.exs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/elixir/apps/domain/priv/repo/seeds.exs b/elixir/apps/domain/priv/repo/seeds.exs index f8c0e7476..5d0c3b27c 100644 --- a/elixir/apps/domain/priv/repo/seeds.exs +++ b/elixir/apps/domain/priv/repo/seeds.exs @@ -1175,21 +1175,13 @@ defmodule Domain.Repo.Seeds do IO.puts("") - {:ok, _resource, flow, _expires_at} = + {:ok, _resource, _flow, _expires_at} = Flows.authorize_flow( user_iphone, gateway1, cidr_resource.id, unprivileged_subject ) - - started_at = - DateTime.utc_now() - |> DateTime.truncate(:second) - |> DateTime.add(5, :minute) - - {:ok, destination1} = Domain.Types.ProtocolIPPort.cast("tcp://142.250.217.142:443") - {:ok, destination2} = Domain.Types.ProtocolIPPort.cast("udp://142.250.217.142:111") end end