variables: handler should catch errors before conflicts (#14591)
This commit is contained in:
parent
cebfbb0c28
commit
89dfdef95d
|
@ -169,6 +169,9 @@ func (sv *Variables) makeVariablesApplyResponse(
|
|||
}
|
||||
return &out, nil
|
||||
}
|
||||
if eResp.IsError() {
|
||||
return &out, eResp.Error
|
||||
}
|
||||
|
||||
// At this point, the response is necessarily a conflict.
|
||||
// Prime output from the encrypted responses metadata
|
||||
|
|
Loading…
Reference in New Issue