Skip to content

Commit e3c9875

Browse files
author
Adriano Santos
committed
fix typo
1 parent 9786246 commit e3c9875

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spawn_operator/spawn_operator/lib/spawn_operator/k8s/proxy/deployment.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do
102102
IO.inspect(params, label: "spec")
103103

104104
erlang_mtls_enabled =
105-
System.get_env("ERL_CLUSTER_MTL_ENABLED", "false")
105+
System.get_env("ERL_CLUSTER_MTLS_ENABLED", "false")
106106
|> to_bool()
107107

108108
IO.inspect(erlang_mtls_enabled, label: "Erlang cluster tls enabled")

spawn_operator/spawn_operator/lib/spawn_operator/k8s/system/secret/actor_system_secret.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ defmodule SpawnOperator.K8s.System.Secret.ActorSystemSecret do
115115
cluster_heartbeat = "240000" |> Base.encode64()
116116

117117
%{
118-
"ERL_CLUSTER_MTL_ENABLED" => Base.encode64("#{erlang_mtls_enabled}"),
118+
"ERL_CLUSTER_MTLS_ENABLED" => Base.encode64("#{erlang_mtls_enabled}"),
119119
"ERL_FLAGS" => Base.encode64(erlang_profile),
120120
"RELEASE_COOKIE" => cookie,
121121
"PROXY_ACTOR_SYSTEM_NAME" => Base.encode64(system),

0 commit comments

Comments
 (0)