fix: don't spam nodes with updates and instead pull the registry on keepalive
This commit is contained in:
parent
7fb90dd1da
commit
476c4b056f
5 changed files with 108 additions and 40 deletions
|
|
@ -15,13 +15,14 @@ func (p Path) String() string {
|
|||
}
|
||||
|
||||
const (
|
||||
PathMasterJoin Path = "/master/join"
|
||||
PathMasterLeave Path = "/master/leave"
|
||||
PathMasterKeepalive Path = "/master/keepalive"
|
||||
PathMasterJoin Path = "/master/join"
|
||||
PathMasterLeave Path = "/master/leave"
|
||||
PathMasterKeepalive Path = "/master/keepalive"
|
||||
PathMasterEventJoin Path = "/master/event_join"
|
||||
PathMasterEventLeave Path = "/master/event_leave"
|
||||
PathMasterEventKeepalive Path = "/master/event_keepalive"
|
||||
|
||||
PathNodeHealthcheck Path = "/node/healthcheck"
|
||||
PathNodeJoin Path = "/node/join"
|
||||
PathNodeLeave Path = "/node/leave"
|
||||
|
||||
PathDnsCallback Path = "/dns/callback"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue