nesimtunc

nesimtunc

Can't access application environment variables as boolean

Hi,

I set some application environment variables based on System’s environment variables in config.exs file like this:

And access it from DevicePlug module like this:

https://github.com/rainlab-inc/cothings/blob/master/lib/coliving_web/plugs/device_plug.ex#L19-L24

While I get access these values properly from another modules without problem, for example:

but I get error in DevicePlug module and it returns “false” as string instead of a boolean variable. Why?

Here’s a full stack error log:

[info] GET /
[debug] Processing with ColivingWeb.PageController.index/2
  Parameters: %{}
  Pipelines: [:browser]
"false"
[info] Sent 500 in 59ms
[error] #PID<0.468.0> running ColivingWeb.Endpoint (connection #PID<0.467.0>, stream id 1) terminated
Server: localhost:4000 (http)
Request: GET /
** (exit) an exception was raised:
    ** (CaseClauseError) no case clause matching: "false"
        (coliving 0.1.0) lib/coliving_web/plugs/device_plug.ex:20: ColivingWeb.Plugs.DevicePlug.call/2
        (coliving 0.1.0) ColivingWeb.Router.browser/2
        (coliving 0.1.0) lib/coliving_web/router.ex:1: ColivingWeb.Router.__pipe_through0__/1
        (phoenix 1.5.1) lib/phoenix/router.ex:347: Phoenix.Router.__call__/2
        (coliving 0.1.0) lib/coliving_web/endpoint.ex:1: ColivingWeb.Endpoint.plug_builder_call/2
        (coliving 0.1.0) lib/plug/debugger.ex:132: ColivingWeb.Endpoint."call (overridable 3)"/2
        (coliving 0.1.0) lib/coliving_web/endpoint.ex:1: ColivingWeb.Endpoint.call/2
        (phoenix 1.5.1) lib/phoenix/endpoint/cowboy2_handler.ex:64: Phoenix.Endpoint.Cowboy2Handler.init/4
        (cowboy 2.7.0) coliving/deps/cowboy/src/cowboy_handler.erl:41: :cowboy_handler.execute/2
        (cowboy 2.7.0) coliving/deps/cowboy/src/cowboy_stream_h.erl:320: :cowboy_stream_h.execute/3
        (cowboy 2.7.0) coliving/deps/cowboy/src/cowboy_stream_h.erl:302: :cowboy_stream_h.request_process/3
        (stdlib 3.11.2) proc_lib.erl:249: :proc_lib.init_p_do_apply/3

Thanks!

Marked As Solved

NobbZ

NobbZ

In your config.exs (or a similar file) you are doing this:

config :foo, :bar, System.get_env("ENV")

As System.get_env/1 always returns a string (the system environment isn’t even able to store something else), Application.get_env(:foo, :bar) will of course return a string as well.

If you want to read a “boolean” from the enf, you need a little helper:

toBool = fn
  "true", _ -> true
  "false", _ -> false
  nil, default -> default
end

config :foo, :bar, toBool.(System.get_env("ENV"), false)

This will crash when the config is evaluated and ENV is not set correctly.

Also Liked

Nicd

Nicd

Environment variables are always strings. If you wish to cast them to a different type, you need to do that manually.

Be careful about getting environment variables in your config.exs files, as they are evaluated during build time and will reflect the build environment. When you move to production, you probably want to be able to get the values at startup / runtime instead. I just wrote a blog post about the different places of configuration.

NobbZ

NobbZ

App env can be whatever you want, system environment though is string only.

Nicd

Nicd

Not sure what you mean by this. The main thing to think about is that the normal config files are evaluated at build time, but config/releases.exs is evaluated at startup time.

I should probably clarify that in the article. The init functions are just a convention that many libraries use, but Phoenix does not use it. So that’s why it’s never called. The example uses Geolix which does allow setting an init function to be called at startup.

Last Post!

NobbZ

NobbZ

For config you have no other possibility than to put it in exactly the config in which you use it.

Where Next?

Popular in Questions Top

Brian
What is the proper way to load a module from a file in to IEX? In the python world, doing something like this pretty standard: from ....
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
joeerl
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
pmjoe
I have a relationship of love and hate with Elixir. Lots of things are just absolutely right, but there are some things that are kind of ...
New
albydarned
Hello all! I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New
JorisKok
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New

Other popular topics Top

vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 49084 226
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
dblack
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar. I p...
New
Patoshizzle
After calling mix ecto.create I get this error: 17:00:32.162 [error] GenServer #PID&lt;0.412.0&gt; terminating ** (Postgrex.Error) FATAL...
New
Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New

We're in Beta

About us Mission Statement