Compare commits
1 commit
a6d5f2864f
...
ebaf78c8fa
Author | SHA1 | Date | |
---|---|---|---|
ebaf78c8fa |
2 changed files with 3 additions and 3 deletions
|
@ -641,7 +641,7 @@ func ObjectSessionVerbToGRPCField(v ObjectSessionVerb) session.ObjectSessionCont
|
|||
return session.ObjectSessionContext_RANGE
|
||||
case ObjectVerbRangeHash:
|
||||
return session.ObjectSessionContext_RANGEHASH
|
||||
case ObjectPatch:
|
||||
case ObjectVerbPatch:
|
||||
return session.ObjectSessionContext_PATCH
|
||||
default:
|
||||
return session.ObjectSessionContext_VERB_UNSPECIFIED
|
||||
|
@ -665,7 +665,7 @@ func ObjectSessionVerbFromGRPCField(v session.ObjectSessionContext_Verb) ObjectS
|
|||
case session.ObjectSessionContext_RANGEHASH:
|
||||
return ObjectVerbRangeHash
|
||||
case session.ObjectSessionContext_PATCH:
|
||||
return ObjectPatch
|
||||
return ObjectVerbPatch
|
||||
default:
|
||||
return ObjectVerbUnknown
|
||||
}
|
||||
|
|
|
@ -175,7 +175,7 @@ const (
|
|||
ObjectVerbDelete
|
||||
ObjectVerbRange
|
||||
ObjectVerbRangeHash
|
||||
ObjectPatch
|
||||
ObjectVerbPatch
|
||||
)
|
||||
|
||||
func (c *CreateRequestBody) GetOwnerID() *refs.OwnerID {
|
||||
|
|
Loading…
Add table
Reference in a new issue