Conversation
- Add package/0, description/0, docs/0, and @source_url to mix.exs - Add ex_doc dependency for hexdocs generation - Add CHANGELOG.md documenting the initial release
Cluster tests (4 new tests using :peer): - Producer discovery across nodes - Producer list updates after node departure - Unique job dedup across nodes - Unique entry transfer on graceful shutdown Bug fixes found by cluster tests: - route_unique now calls Unique.check_and_insert on the target node's Unique server instead of always checking locally. Without this, unique dedup only worked on a single node. - sync_unique_entries now excludes self() from the rendezvous calculation so entries owned by the dying producer are transferred to survivors instead of being silently kept. - do_sync_unique guard changed from "< 2 producers" to "0 survivors" so entries transfer correctly when there is exactly one survivor. - Producer terminate handles PgRegistry being unavailable during node shutdown. Release prep: - Add hex package config, ex_doc dependency, and CHANGELOG.md - Add single-node demo script and cluster demo instructions - Start distribution in test_helper for cluster tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
package/0,description/0,docs/0,@source_url)ex_docdependency for hexdocs generationTest plan
mix precommit— format, credo, 82 tests, 0 failuresmix dialyzer— 0 errorsmix docs— generates cleanly