Merge pull request #6467 from coreos/revert-6465-tls-copy

Revert "pkg/transport: update tls.Config copy method"
This commit is contained in:
Gyu-Ho Lee 2016-09-19 16:02:41 +09:00 committed by GitHub
commit 2dc06787ae

View File

@ -268,8 +268,6 @@ func ShallowCopyTLSConfig(cfg *tls.Config) *tls.Config {
ClientSessionCache: cfg.ClientSessionCache,
MinVersion: cfg.MinVersion,
MaxVersion: cfg.MaxVersion,
DynamicRecordSizingDisabled: cfg.DynamicRecordSizingDisabled,
Renegotiation: cfg.Renegotiation,
CurvePreferences: cfg.CurvePreferences,
}
return &ncfg