In other word, what's the equivalent of setting the `-servername` in `openssl s_client`?
I have verified my TLS server works by using the correct flags on `openssl s_client`:
```sh
```
However, I wasn't able to setup the credentials correct with the Python /C++ API:
```python
creds = grpc.ssl_channel_credentials(
root_certificates=dev_cert)
# root_certificates=certificate_chain)
# certificate_chain=certificate_chain)
channel = grpc.secure_channel(uri, creds,
options=(('grpc.ssl_target_name_override', hostname),)
)
# This throws
```python
grpc._channel._Rendezvous: <_Rendezvous of RPC that terminated with (StatusCode.UNAVAILABLE, Connect Failed)>
```
```