Merge pull request #3543 from Azure/mociarain/remove-ErrorIfNoField

Drop ErrorIfNoField
This commit is contained in:
Ben Vesel 2024-04-28 10:26:06 -04:00 коммит произвёл GitHub
Родитель f62c65d5fa 3c3088e8a4
Коммит ec4f2b5bcc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 2 добавлений и 19 удалений

Просмотреть файл

@ -15,13 +15,7 @@ import (
var secretPreservingJSONHandle *codec.JsonHandle
func init() {
secretPreservingJSONHandle = &codec.JsonHandle{
BasicHandle: codec.BasicHandle{
DecodeOptions: codec.DecodeOptions{
ErrorIfNoField: true,
},
},
}
secretPreservingJSONHandle = &codec.JsonHandle{}
err := secretPreservingJSONHandle.SetInterfaceExt(reflect.TypeOf(SecureBytes{}), 1, secureHidingExt{})
if err != nil {

Просмотреть файл

@ -78,13 +78,7 @@ func getDatabaseKey(keys sdkcosmos.DatabaseAccountsClientListKeysResponse, log *
}
func NewJSONHandle(aead encryption.AEAD) (*codec.JsonHandle, error) {
h := &codec.JsonHandle{
BasicHandle: codec.BasicHandle{
DecodeOptions: codec.DecodeOptions{
ErrorIfNoField: true,
},
},
}
h := &codec.JsonHandle{}
if aead == nil {
return h, nil

Просмотреть файл

@ -51,11 +51,6 @@ func (f *frontend) _putSubscription(ctx context.Context, r *http.Request) ([]byt
oldState := doc.Subscription.State
h := &codec.JsonHandle{
BasicHandle: codec.BasicHandle{
DecodeOptions: codec.DecodeOptions{
ErrorIfNoField: true,
},
},
Indent: 4,
}