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.
Creates a
Core
interface, where the default structure is theReltCore
, this core structure will manage all goroutines and state, for issuing request to peers and receiving messages, as well as shutdown resources. To issue requests theCoordinator
interface, this interface should be implemented by the structure that issues and receives commands using the atomic broadcast.For referece, on the current version, should exists a
RabbitMQCoordinator
responsible for sending and receiving messages. The current available coordinator is theEtcdCoordinator
backed by a etcd server, as mentioned on #3.Issues
The etcd version seems to have something wrong, that can be seen be the output:
Digging through some issues to find somenthing (etcd-io/etcd#11931, etcd-io/etcd#12577) found the solution was to lock the grpc dependecy on
v1.26.0
, but this can be harmful since on this version the grpc has a problem handling DNS.