Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriano Santos committed Jan 18, 2025
1 parent 9786246 commit e3c9875
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do
IO.inspect(params, label: "spec")

erlang_mtls_enabled =
System.get_env("ERL_CLUSTER_MTL_ENABLED", "false")
System.get_env("ERL_CLUSTER_MTLS_ENABLED", "false")
|> to_bool()

IO.inspect(erlang_mtls_enabled, label: "Erlang cluster tls enabled")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ defmodule SpawnOperator.K8s.System.Secret.ActorSystemSecret do
cluster_heartbeat = "240000" |> Base.encode64()

%{
"ERL_CLUSTER_MTL_ENABLED" => Base.encode64("#{erlang_mtls_enabled}"),
"ERL_CLUSTER_MTLS_ENABLED" => Base.encode64("#{erlang_mtls_enabled}"),
"ERL_FLAGS" => Base.encode64(erlang_profile),
"RELEASE_COOKIE" => cookie,
"PROXY_ACTOR_SYSTEM_NAME" => Base.encode64(system),
Expand Down

0 comments on commit e3c9875

Please sign in to comment.