File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule Realtime.MixProject do
4
4
def project do
5
5
[
6
6
app: :realtime ,
7
- version: "2.46.0 " ,
7
+ version: "2.46.1 " ,
8
8
elixir: "~> 1.17.3" ,
9
9
elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
10
10
start_permanent: Mix . env ( ) == :prod ,
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ generate_certs() {
60
60
jq -r ' .key' cert_secrets | base64 -d > ca.key
61
61
jq -r ' .cert' cert_secrets | base64 -d > ca.cert
62
62
openssl req -new -nodes -out server.csr -keyout server.key -subj " /C=US/ST=Delaware/L=New Castle/O=Supabase Inc/CN=$( hostname -f) "
63
- openssl x509 -req -in server.csr -days 90 -CA ca.cert -CAkey ca.key -out server.crt
63
+ openssl x509 -req -in server.csr -days 90 -CA ca.cert -CAkey ca.key -out server.cert
64
64
rm -f ca.key
65
65
CWD=` pwd`
66
66
export GEN_RPC_CACERTFILE=" $CWD /ca.cert"
@@ -91,7 +91,7 @@ if [ "${ENABLE_ERL_CRASH_DUMP:-false}" = true ]; then
91
91
fi
92
92
93
93
if [[ -n " ${GENERATE_CLUSTER_CERTS} " ]] ; then
94
- generate_certs ()
94
+ generate_certs
95
95
fi
96
96
97
97
echo " Running migrations"
You can’t perform that action at this time.
0 commit comments