Skip to content

Commit

Permalink
fix: config (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
pichoemr authored Jan 6, 2023
1 parent 21560e3 commit 92016dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/releases.exs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ config :application_runner,
faas_auth: System.fetch_env!("FAAS_AUTH"),
faas_registry: System.fetch_env!("FAAS_REGISTRY"),
gitlab_api_url: System.fetch_env!("GITLAB_API_URL"),
listeners_timeout: System.fetch_env!("LISTENERS_TIMEOUT"),
view_timeout: System.fetch_env!("VIEW_TIMEOUT"),
manifest_timeout: System.fetch_env!("MANIFEST_TIMEOUT")
listeners_timeout: String.to_integer(System.fetch_env!("LISTENERS_TIMEOUT")),
view_timeout: String.to_integer(System.fetch_env!("VIEW_TIMEOUT")),
manifest_timeout: String.to_integer(System.fetch_env!("MANIFEST_TIMEOUT"))

config :application_runner, :mongo,
hostname: System.fetch_env!("MONGO_HOSTNAME"),
Expand Down

0 comments on commit 92016dc

Please sign in to comment.