forked from TrueCloudLab/frostfs-node
[#505] ir/container: Check key ownership in Put container handler
Check if new container was signed by its owner, and otherwise prohibit operation. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
5287c194e5
commit
6310535b3c
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ func (cp *Processor) checkPutContainer(e *containerEvent.Put) error {
|
|||
return fmt.Errorf("incorrect container format: %w", err)
|
||||
}
|
||||
|
||||
return nil
|
||||
return cp.checkKeyOwnership(cnr, key)
|
||||
}
|
||||
|
||||
func (cp *Processor) approvePutContainer(e *containerEvent.Put) {
|
||||
|
|
Loading…
Reference in a new issue