Dmitrii Stepanov dstepanov-yadro
  • Joined on 2023-03-06
dstepanov-yadro pushed to feat/OBJECT-3310 at dstepanov-yadro/frostfs-node 2023-03-13 11:03:02 +00:00
7bf4e12433 [#XX] tracing: Add tracing to node gRPC endpoints
365adb4ebd [#133] .github: Restore logo.svg
bce5827f64 [#83] pre-commit: Add shellcheck hook
05471d3827 [#83] util/autocomplete: Fix deprecated warning
8226d49376 [#83] pre-commit: Add gitlint hook
Compare 12 commits »
dstepanov-yadro pushed to feat/refactor_assemble at dstepanov-yadro/frostfs-node 2023-03-13 07:25:25 +00:00
d11d2ac6d2 [#85] get-service: Drop unused assemble flag
24825e4321 [#85] get-service: Use assembler to assemble LOB
bbd3207af8 [#85] get-service: Fix corrupted chain logic
fc4c36394f [#85] get-service: Add unit tests
f5d86e4fcd [#85] get-service: Add assembler
Compare 18 commits »
dstepanov-yadro commented on pull request TrueCloudLab/frostfs-node#124 2023-03-13 07:23:50 +00:00
Refactor object building logic away from the GET service

I'm not strict with comments as I think code should be self-documenting. But еhanks, I'll keep that in mind in the future.

dstepanov-yadro pushed to feat/refactor_assemble at dstepanov-yadro/frostfs-node 2023-03-13 07:19:15 +00:00
552ec79566 [#85] get-service: Drop unused assemble flag
fbff39a867 [#85] get-service: Use assembler to assemble LOB
a6fe65effe [#85] get-service: Fix corrupted chain logic
77879518c0 [#85] get-service: Add unit tests
34af0c9efe [#85] get-service: Add assembler
Compare 5 commits »
dstepanov-yadro pushed to feat/refactor_assemble at dstepanov-yadro/frostfs-node 2023-03-13 07:01:16 +00:00
6a5349d381 [#85] get-service: Drop unused assemble flag
df9d6b0f56 [#85] get-service: Use assembler to assemble LOB
35b00fac5e [#85] get-service: Fix corrupted chain logic
328f39239e [#85] get-service: Add unit tests
c7744edd5d [#85] get-service: Add assembler
Compare 5 commits »
dstepanov-yadro created branch feat/OBJECT-3310 in dstepanov-yadro/frostfs-node 2023-03-10 15:07:02 +00:00
dstepanov-yadro pushed to feat/OBJECT-3310 at dstepanov-yadro/frostfs-node 2023-03-10 15:07:02 +00:00
ec0d0274fa [#3] signature: Add buffer pool
73fde0e37c [#3] signature: Verify parts in parallel
611f73ad0f [#3] signature: Sign parts in parallel
e073c996fc [#3] signature: Add benchmarks
d005bf0393 [#3] signature: Refactor sign and verify
Compare 10 commits »
dstepanov-yadro commented on pull request TrueCloudLab/frostfs-node#124 2023-03-10 08:13:12 +00:00
Refactor object building logic away from the GET service

dropped. i think it depends.

dstepanov-yadro commented on pull request TrueCloudLab/frostfs-node#124 2023-03-10 08:09:16 +00:00
Refactor object building logic away from the GET service

done. also dropped one more.

dstepanov-yadro commented on pull request TrueCloudLab/frostfs-node#124 2023-03-10 08:08:55 +00:00
Refactor object building logic away from the GET service

this comment was just for me, dropped.

dstepanov-yadro pushed to feat/refactor_assemble at dstepanov-yadro/frostfs-node 2023-03-10 08:07:51 +00:00
151b748bcc [#85] get-service: Drop unused assemble flag
999f5bab20 [#85] get-service: Use assembler to assemble LOB
9ea1033fbb [#85] get-service: Fix corrupted chain logic
4d2fc56d00 [#85] get-service: Add unit tests
600a229252 [#85] get-service: Add assembler
Compare 5 commits »
dstepanov-yadro commented on pull request TrueCloudLab/frostfs-api-go#8 2023-03-10 07:39:51 +00:00
Refactor sign/verify message

fixed

7655227773 [#3] signature: Add buffer pool
e1d95de18f [#3] signature: Verify parts in parallel
d29cfe3bfc [#3] signature: Sign parts in parallel
ccec967aad [#3] signature: Add benchmarks
1c61d84bbe [#3] signature: Refactor sign and verify
Compare 6 commits »
dstepanov-yadro commented on pull request TrueCloudLab/frostfs-api-go#8 2023-03-10 07:31:28 +00:00
Refactor sign/verify message

because sign methods creates origin at every call, so it's like matryoshka.

dstepanov-yadro commented on pull request TrueCloudLab/frostfs-api-go#8 2023-03-10 07:22:33 +00:00
Refactor sign/verify message

Fixed

fe59664de1 [#3] signature: Add buffer pool
dstepanov-yadro commented on pull request TrueCloudLab/frostfs-api-go#8 2023-03-10 07:16:24 +00:00
Refactor sign/verify message

because of go:

package main

import (
	"fmt"
)

type typeI interface{
	Do() error
}

type typeT struct {
}

func (v *typeT) Do() error {
	return nil
}

func main() {
	var vI typeI
	var