Compare commits

..

1 Commits

Author SHA1 Message Date
Anton Nikiforov 76777820cf [#1103] node: Implement `Get\Head` requests for EC object
Build / Build Components (1.21) (pull_request) Failing after 1m15s Details
Build / Build Components (1.22) (pull_request) Failing after 1m24s Details
DCO action / DCO (pull_request) Successful in 1m51s Details
Tests and linters / Tests (1.22) (pull_request) Failing after 2m22s Details
Tests and linters / Tests with -race (pull_request) Failing after 2m18s Details
Tests and linters / Tests (1.21) (pull_request) Failing after 2m28s Details
Vulncheck / Vulncheck (pull_request) Failing after 2m23s Details
Tests and linters / Staticcheck (pull_request) Failing after 2m34s Details
Tests and linters / Lint (pull_request) Failing after 3m21s Details
Tests and linters / gopls check (pull_request) Failing after 3m29s Details
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
2024-04-23 09:05:39 +03:00
2 changed files with 3 additions and 0 deletions

View File

@ -139,9 +139,11 @@ func (r *request) getObjectWithIndependentRequest(ctx context.Context, prm Reque
remoteStorageConstructor: r.remoteStorageConstructor,
epochSource: r.epochSource,
localStorage: r.localStorage,
containerSource: r.containerSource,
prm: prm,
infoSplit: objectSDK.NewSplitInfo(),
infoEC: objectSDK.NewECInfo(),
log: r.log,
}

View File

@ -78,6 +78,7 @@ func (s *Service) get(ctx context.Context, prm RequestParameters) error {
prm: prm,
infoSplit: objectSDK.NewSplitInfo(),
infoEC: objectSDK.NewECInfo(),
log: s.log,
}
exec.setLogger(s.log)