You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way we do (1) currently is overwrite the TLS validation setting each time we get a pointer to the transport. That's not thread-safe -- and we don't want to recompute this each time.
Instead, move the GetTransport() to the configuration sub-module so we can lazily recreate the object each time the configuration (client or server) is run.
The text was updated successfully, but these errors were encountered:
The transport can be changed as part of the configuration process. For example, it can:
The way we do (1) currently is overwrite the TLS validation setting each time we get a pointer to the transport. That's not thread-safe -- and we don't want to recompute this each time.
Instead, move the
GetTransport()
to the configuration sub-module so we can lazily recreate the object each time the configuration (client or server) is run.The text was updated successfully, but these errors were encountered: