forked from TrueCloudLab/frostfs-node
[#747] client: Refactor PrmObjectPutSingle usage
Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
This commit is contained in:
parent
dc4d27201b
commit
12b7cf2533
3 changed files with 8 additions and 18 deletions
2
go.mod
2
go.mod
|
@ -6,7 +6,7 @@ require (
|
|||
git.frostfs.info/TrueCloudLab/frostfs-api-go/v2 v2.16.0
|
||||
git.frostfs.info/TrueCloudLab/frostfs-contract v0.18.0
|
||||
git.frostfs.info/TrueCloudLab/frostfs-observability v0.0.0-20230531082742-c97d21411eb6
|
||||
git.frostfs.info/TrueCloudLab/frostfs-sdk-go v0.0.0-20230928142024-84b9d29fc98c
|
||||
git.frostfs.info/TrueCloudLab/frostfs-sdk-go v0.0.0-20231019083813-5804128ff3d5
|
||||
git.frostfs.info/TrueCloudLab/hrw v1.2.1
|
||||
git.frostfs.info/TrueCloudLab/tzhash v1.8.0
|
||||
github.com/cheggaaa/pb v1.0.29
|
||||
|
|
BIN
go.sum
BIN
go.sum
Binary file not shown.
|
@ -449,25 +449,15 @@ func PutObjectSingle(ctx context.Context, prm PutObjectPrm) (*PutObjectRes, erro
|
|||
return nil, errors.New("missing object id")
|
||||
}
|
||||
|
||||
var prmCli client.PrmObjectPutSingle
|
||||
|
||||
prmCli.ExecuteLocal()
|
||||
|
||||
if prm.key != nil {
|
||||
prmCli.UseKey(prm.key)
|
||||
prmCli := client.PrmObjectPutSingle{
|
||||
XHeaders: prm.xHeaders,
|
||||
BearerToken: prm.tokenBearer,
|
||||
Session: prm.tokenSession,
|
||||
Local: true,
|
||||
Key: prm.key,
|
||||
Object: prm.obj,
|
||||
}
|
||||
|
||||
if prm.tokenSession != nil {
|
||||
prmCli.WithinSession(*prm.tokenSession)
|
||||
}
|
||||
|
||||
if prm.tokenBearer != nil {
|
||||
prmCli.WithBearerToken(*prm.tokenBearer)
|
||||
}
|
||||
|
||||
prmCli.WithXHeaders(prm.xHeaders...)
|
||||
prmCli.SetObject(prm.obj.ToV2())
|
||||
|
||||
res, err := prm.cli.ObjectPutSingle(ctx, prmCli)
|
||||
if err != nil {
|
||||
ReportError(prm.cli, err)
|
||||
|
|
Loading…
Reference in a new issue