Skip to content

Commit

Permalink
fix: typos (#840)
Browse files Browse the repository at this point in the history
* fix some typos (#805)

* chore: fix some typos (#808)

Co-authored-by: rustrover <154583430+rustrover@users.noreply.github.com>
Co-authored-by: avoidaway <163620038+avoidaway@users.noreply.github.com>
  • Loading branch information
3 people committed Apr 12, 2024
1 parent df817db commit 9bf0fbb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# Following query was used to generate this file:
# SELECT json_object_agg(UPPER(PT.typname), PT.oid::int4 ORDER BY pt.oid)
# FROM pg_type PT
# WHERE typnamespace = (SELECT pgn.oid FROM pg_namespace pgn WHERE nspname = 'pg_catalog') -- Take only builting Postgres types with stable OID (extension types are not guaranted to be stable)
# WHERE typnamespace = (SELECT pgn.oid FROM pg_namespace pgn WHERE nspname = 'pg_catalog') -- Take only builting Postgres types with stable OID (extension types are not guaranteed to be stable)
# AND typtype = 'b' -- Only basic types
# AND typisdefined -- Ignore undefined types

Expand Down
4 changes: 2 additions & 2 deletions lib/extensions/postgres_cdc_rls/cdc_rls.ex
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ defmodule Extensions.PostgresCdcRls do
ok

{:error, {:already_started, _pid}} = error ->
Logger.info("Postgres Extention already started on node #{inspect(launch_node)}")
Logger.info("Postgres Extension already started on node #{inspect(launch_node)}")
error

error ->
Logger.error("Error starting Postgres Extention: #{inspect(error, pretty: true)}")
Logger.error("Error starting Postgres Extension: #{inspect(error, pretty: true)}")
error
end
end
Expand Down
4 changes: 2 additions & 2 deletions lib/extensions/postgres_cdc_stream/cdc_stream.ex
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ defmodule Extensions.PostgresCdcStream do
ok

{:error, {:already_started, _pid}} = error ->
Logger.info("Postgres Extention already started on node #{inspect(launch_node)}")
Logger.info("Postgres Extension already started on node #{inspect(launch_node)}")
error

error ->
Logger.error("Error starting Postgres Extention: #{inspect(error, pretty: true)}")
Logger.error("Error starting Postgres Extension: #{inspect(error, pretty: true)}")
error
end
end
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Realtime.MixProject do
def project do
[
app: :realtime,
version: "2.28.19",
version: "2.28.20",
elixir: "~> 1.14.0",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit 9bf0fbb

Please sign in to comment.