Packages
eventstore
0.13.2
1.4.8
1.4.7
1.4.6
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-rc.0
0.17.0
0.16.2
0.16.1
0.16.0
0.15.1
0.15.0
0.14.0
0.14.0-rc.0
0.13.2
0.13.1
0.13.0
0.12.1
0.12.0
0.11.0
0.11.0-rc.0
0.10.1
0.10.0
0.9.0
0.8.1
0.8.0
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0
0.5.2
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Event store using PostgreSQL for persistence.
Current section
65 Versions
Jump to
Current section
65 Versions
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 | [ |