Current section

65 Versions

Jump to

Compare versions

5 files changed
+6 additions
-6 deletions
Failed to load diff
  @@ -84,4 +84,4 @@
84 84 {<<"optional">>,false},
85 85 {<<"repository">>,<<"hexpm">>},
86 86 {<<"requirement">>,<<"~> 0.13">>}]]}.
87 - {<<"version">>,<<"0.13.1">>}.
87 + {<<"version">>,<<"0.13.2">>}.
  @@ -12,7 +12,7 @@ defmodule EventStore.Registration.LocalRegistry do
12 12 @impl EventStore.Registration
13 13 def child_spec do
14 14 [
15 - {Registry, keys: :unique, name: EventStore.Registration.LocalRegistry},
15 + Supervisor.child_spec({Registry, keys: :unique, name: EventStore.Registration.LocalRegistry}, id: EventStore.Registration.LocalRegistry),
16 16 ]
17 17 end
  @@ -13,8 +13,8 @@ defmodule EventStore.Supervisor do
13 13 def init([config, serializer]) do
14 14 children = [
15 15 {Postgrex, postgrex_opts(config)},
16 - {Registry, keys: :unique, name: EventStore.Subscriptions.Subscription},
17 - {Registry, keys: :duplicate, name: EventStore.Subscriptions.PubSub, partitions: System.schedulers_online},
16 + Supervisor.child_spec({Registry, keys: :unique, name: EventStore.Subscriptions.Subscription}, id: EventStore.Subscriptions.Subscription),
17 + Supervisor.child_spec({Registry, keys: :duplicate, name: EventStore.Subscriptions.PubSub, partitions: System.schedulers_online}, id: EventStore.Subscriptions.PubSub),
18 18 {EventStore.Subscriptions.Supervisor, []},
19 19 {EventStore.Streams.Supervisor, serializer},
20 20 {EventStore.Publisher, serializer},
  @@ -1,7 +1,7 @@
1 1 defmodule EventStore.Mixfile do
2 2 use Mix.Project
3 3
4 - @version "0.13.1"
4 + @version "0.13.2"
5 5
6 6 def project do
7 7 [