Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix numbered list on strategy sections
  • Loading branch information
filipecabaco committed Nov 30, 2023
commit 928aad4f37734d7ce12adcb857b7c4a1bf78152d
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def handle_continue(:connect, state) do
end
```

1. We actively listen for new `{:notification, pid, reference, channel, payload}` messages and connect to the node received in the payload
2. We actively listen for new `{:notification, pid, reference, channel, payload}` messages and connect to the node received in the payload

```elixir
# lib/cluster/strategy/postgres.ex:80
Expand All @@ -161,7 +161,7 @@ def handle_info({:notification, _, _, _, node}, state) do
end
```

1. Finally, we configure a heartbeat that is similar to the first message sent for cluster formation so libcluster is capable of heal if need be
3. Finally, we configure a heartbeat that is similar to the first message sent for cluster formation so libcluster is capable of heal if need be

```elixir
# lib/cluster/strategy/postgres.ex:73
Expand Down