banano
Hi guys!
I’m trying to upgrade the current library for phoenix socket client for elixir itself https://github.com/Aircloak/phoenix_gen_socket_client, which is more than a year old and works for 1.3, but has several outdated things, like Poison dependency, cowboy, among others, and i can’t fix the tests.
It creates a generic base phoenix app, but fails to launch the endpoint:
** (EXIT from #PID<0.265.0>) shutdown: failed to start child: Phoenix.PubSub.PG2
** (EXIT) shutdown: failed to start child: Phoenix.PubSub.LocalSupervisor
** (EXIT) an exception was raised:
** (ArgumentError) argument error
(stdlib) :ets.new(TestSite.Endpoint, [:set, :named_table, {:read_concurrency, true}])
(phoenix_pubsub) lib/phoenix/pubsub/local_supervisor.ex:24: Phoenix.PubSub.LocalSupervisor.init/1
(stdlib) supervisor.erl:295: :supervisor.init/1
(stdlib) gen_server.erl:374: :gen_server.init_it/2
(stdlib) gen_server.erl:342: :gen_server.init_it/6
(stdlib) proc_lib.erl:249: :proc_lib.init_p_do_apply/3
The weird thing is that i run on iex :ets.new(TestSite.Endpoint, [:set, :named_table, {:read_concurrency, true}]) and runs ok
this is the declaration of the testSite:
defmodule TestSite do
@moduledoc false
defmodule PubSub do
@moduledoc false
def start_link(), do: Registry.start_link(keys: :duplicate, name: TestSite.PubSub)
def subscribe(subscriber_key), do: Registry.register(__MODULE__, subscriber_key, nil)
def notify(subscriber_key, message) do
__MODULE__
|> Registry.lookup(subscriber_key)
|> Enum.map(fn {pid, _value} -> pid end)
|> Enum.each(&send(&1, message))
end
end
defmodule Endpoint do
@moduledoc false
use Phoenix.Endpoint, otp_app: :phoenix_gen_socket_client
socket("/test_socket", TestSite.Socket, websocket: true, longpoll: false)
socket("/test_socket_updated", TestSite.SocketUpdated, websocket: true, longpoll: false)
@doc false
def init(:supervisor, config) do
{:ok,
Keyword.merge(
config,
https: false,
http: [port: 29_876],
secret_key_base: String.duplicate("abcdefgh", 8),
debug_errors: false,
server: true,
pubsub: [adapter: Phoenix.PubSub.PG2, name: __MODULE__]
)}
end
end
...
any clues?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
This probably means the endpoint is already started, or that there is at least an
:etstable with that name already:Maybe that helps point you in the right direction?
banano
I checked ets tables right before start, and there’s no table with that name:
the endpoint:
the test results:
If i remove the init() it doesn’t start at all.
Would be that
Endpoint.start_link()isn’t the right way to start the endpoint without a supervisor anymore?any other hint?
benwilson512
Ah so for one thing, in a test, use
start_supervised(Endpoint). This will ensure that the endpoint is shut down in the given test case before it is started in another test case. Can you show where you’re calling start_link right now?banano
same thing with start_supervised(Endpoint)
This is where it’s being called at Phoenix.Channels.GenSocketClientTest
this is the repo and the test file that i’m working on right now
https://github.com/naaano/phoenix_gen_socket_client/blob/jason/test/socket_client_test.exs