()
| 125 | } |
| 126 | |
| 127 | func (d *RPCFactory) GetFrontendClientTlsConfig() (*tls.Config, error) { |
| 128 | if d.tlsFactory != nil { |
| 129 | return d.tlsFactory.GetFrontendClientConfig() |
| 130 | } |
| 131 | |
| 132 | return nil, nil |
| 133 | } |
| 134 | |
| 135 | func (d *RPCFactory) GetRemoteClusterClientConfig(hostname string) (*tls.Config, error) { |
| 136 | if d.tlsFactory != nil { |