forked from TrueCloudLab/frostfs-node
[#203] node: Fix double imports
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
ab891517de
commit
9e2df4b7c7
10 changed files with 30 additions and 40 deletions
|
@ -8,7 +8,6 @@ import (
|
|||
getsvc "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/object/get"
|
||||
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/object/util"
|
||||
apistatus "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client/status"
|
||||
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
||||
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
||||
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
||||
)
|
||||
|
@ -59,7 +58,7 @@ func (h *headerWriter) WriteHeader(_ context.Context, o *objectSDK.Object) error
|
|||
// Tombstone checks if the engine stores tombstone.
|
||||
// Returns nil, nil if the tombstone has been removed
|
||||
// or marked for removal.
|
||||
func (s Source) Tombstone(ctx context.Context, a oid.Address, _ uint64) (*object.Object, error) {
|
||||
func (s Source) Tombstone(ctx context.Context, a oid.Address, _ uint64) (*objectSDK.Object, error) {
|
||||
var hr headerWriter
|
||||
|
||||
var headPrm getsvc.HeadPrm
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue