Merge v2.1 into master.
This commit is contained in:
commit
09c07f45ee
18 changed files with 386 additions and 82 deletions
|
@ -460,6 +460,11 @@ func (in *Headers) DeepCopyInto(out *Headers) {
|
|||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.AccessControlAllowOriginList != nil {
|
||||
in, out := &in.AccessControlAllowOriginList, &out.AccessControlAllowOriginList
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.AccessControlExposeHeaders != nil {
|
||||
in, out := &in.AccessControlExposeHeaders, &out.AccessControlExposeHeaders
|
||||
*out = make([]string, len(*in))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue