helper.go 634 B

1234567891011121314151617181920212223242526272829
  1. package livezk
  2. import (
  3. "context"
  4. "fmt"
  5. "net"
  6. "go-common/library/naming"
  7. lz "go-common/library/naming/livezk"
  8. "go-common/library/net/ip"
  9. )
  10. // Register self grpc service to live zookeeper
  11. func Register(config *lz.Zookeeper, addr string, discoveryID string) (context.CancelFunc, error) {
  12. _, port, err := net.SplitHostPort(addr)
  13. if err != nil {
  14. return nil, err
  15. }
  16. z, err := lz.New(config)
  17. if err != nil {
  18. return nil, err
  19. }
  20. internalIP := ip.InternalIP()
  21. ins := &naming.Instance{
  22. AppID: discoveryID,
  23. Addrs: []string{fmt.Sprintf("grpc://%s:%s", internalIP, port)},
  24. }
  25. return z.Register(context.Background(), ins)
  26. }