henriquesati

henriquesati

I’m doing a POST request using Req but i’m getting the error ** (ArgumentError) unknown registry: Req.Finch. I found the same problem on elixir reddit but I couldnt manage to understand and apply the possible solution
My code:

defmodule GetPayloadInfo do

  def doReq do
    token = "XXX"
    req = Req.Request.new(method: :post, url: "https://sandbox.asaas.com/api/v3/pix/qrCodes/decode")
    req = Req.Request.put_headers(req, [{"accept", "application/json"}, {"acess_token", token}, {"content-type", "application/json"} ])

    {req, resp} = Req.Request.run_request(req)
  end

end

Then I simply call the function on my main file with a simple hello world output so make sure its all fine before this

Hello.say_hi()
GetPayloadInfo.doReq()

and this is my mix.exs file

defmodule TestesPay.MixProject do
  use Mix.Project

  def project do
    [
      app: :testes_pay,
      version: "0.1.0",
      elixir: "~> 1.16",
      start_permanent: Mix.env() == :prod,
      deps: deps()
    ]
  end

  # Run "mix help compile.app" to learn about applications.
  def application do
    [
      extra_applications: [:logger],
      telemetry: [enabled: false],
    ]
  end

  # Run "mix help deps" to learn about dependencies.
  defp deps do
    [
      {:req, "~> 0.5.0"}
      # {:dep_from_hexpm, "~> 0.3.0"},
      # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
    ]
  end
end
the code contains no scripts, only .ex files, located at lib

Showing Posts 1 to 10

henriquesati

henriquesati OP

== Compilation error in file lib/cry.ex ==
** (ArgumentError) unknown registry: Req.Finch
    (elixir 1.16.3) lib/registry.ex:1400: Registry.key_info!/1
    (elixir 1.16.3) lib/registry.ex:590: Registry.lookup/2
    (finch 0.18.0) lib/finch/pool_manager.ex:46: Finch.PoolManager.lookup_pool/2
    (finch 0.18.0) lib/finch/pool_manager.ex:34: Finch.PoolManager.get_pool/3
    (finch 0.18.0) lib/finch.ex:428: Finch.__stream__/5
    (finch 0.18.0) lib/finch.ex:472: anonymous fn/4 in Finch.request/3
    (telemetry 1.2.1) c:/Users/pedro/OneDrive/Área de Trabalho/testes_pay/deps/telemetry/src/telemetry.erl:321: :telemetry.span/3
    (req 0.5.1) lib/req/steps.ex:977: Req.Steps.run_finch_request/3

the full compilation error in case it helps

wojtekmach

wojtekmach

Hex Core Team
== Compilation error in file lib/cry.ex ==

Oh, you’re using Req at compile-time, i.e. in module body and similar. In that case it seems you need to explicitly start dependencies:

defmodule Foo do
  {:ok, _} = Application.ensure_all_started(:req)
  Req.get(...)
end
henriquesati

henriquesati OP

Thanks for you help, it worked. Application its a built in module in elixir/mix and ensure_all_started all is another module (or method, I don’t know how things are exactly referenced in lixir) that ensures all dependencies a module uses are loaded before the module itself?
I dont quite get the ''using req at compile-time", there is another way os using it?

wojtekmach

wojtekmach

Hex Core Team

compile-time vs runtime is a pretty broad topic so to just scratch the surface when you have a module:

def Foo do
  IO.puts :at_compile_time

  def foo do
    IO.puts :at_runtime
  end
end

the first IO.puts is executed while the module is being compiled. When it is being used at runtime, that IO.puts will not be executed. On the other hand, the second IO.puts is NOT executed when the module is being compiled. It is only executed when you call Foo.foo(). Doing things at compile-time is definitely an Elixir super power and for this particular use case you need that Application.ensure_all_started. (The reason is Req library starts a supervision tree in its application callback module. If it didn’t, ensure_all_started would not be necessary.) In vast majority of day to day Elixir programming, you don’t need ensure_all_started, it is done for you.

dimitarvp

dimitarvp

No, not at all. Modules are loaded just fine but there is the concept of applications that start various OTP processes which is achieved by the applications themselves being “started” (“application” being a useful abstraction here).

jswanner

jswanner

Are you sure you want to be using Req at compile time? I suspect you want to move your use of Req into a function so that you can use it while your application is running

henriquesati

henriquesati OP

what do you mean by that? I have no idea what i’m doing to be real, i’m learning elixir and the lib now, the docs aren’t helping much, i’m stuck in pretty basic things

BrightEyesDavid

BrightEyesDavid

What does your “main file” look like?

Others will correct me if I’m wrong, but I think, based on @wojtekmach’s answer, it’s because your function calls are not themselves in a function, so they call functions at compile time instead of run time:

Try putting those function calls in a function:

defmodule Main do
  def go do
    Hello.say_hi()
    GetPayloadInfo.doReq()
  end
end

Then (without the Application.ensure_all_started), run the Main.go function in iex (in the directory containing your Mix project):

$ iex -S mix
iex> Main.go
LorenzoD

LorenzoD

For those finding this thread after running into this error when using Req in a function within a Mix.Task module: This problem is resolved by adding @requirements ["app.start"] at the module level. This ensures that Req and its dependencies are available for use when you execute the Mix task.

More information can be found in the documentation here.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
kszambelanczyk
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
RemyXRenard
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
velrest
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
samoloth
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
FlyingNoodle
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
ryanwinchester
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 Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
Damirados
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews