GetPeerConn returns a gRPC client connection to the cluster peer. See package ../cluster for more information.
(ctx context.Context, role ttnpb.ClusterRole, ids cluster.EntityIdentifiers)
| 63 | // GetPeerConn returns a gRPC client connection to the cluster peer. |
| 64 | // See package ../cluster for more information. |
| 65 | func (c *Component) GetPeerConn(ctx context.Context, role ttnpb.ClusterRole, ids cluster.EntityIdentifiers) (*grpc.ClientConn, error) { |
| 66 | return c.cluster.GetPeerConn(ctx, role, ids) |
| 67 | } |
| 68 | |
| 69 | // ClaimIDs claims the identifiers in the cluster. |
| 70 | // See package ../cluster for more information. |
no test coverage detected