frostfs-node/cmd/frostfs-adm/internal/modules/morph
Ekaterina Lebedeva a685fcdc96
All checks were successful
DCO action / DCO (pull_request) Successful in 2m41s
Tests and linters / Run gofumpt (pull_request) Successful in 2m32s
Vulncheck / Vulncheck (pull_request) Successful in 2m38s
Build / Build Components (1.23) (pull_request) Successful in 3m0s
Build / Build Components (1.22) (pull_request) Successful in 3m3s
Pre-commit hooks / Pre-commit (pull_request) Successful in 3m33s
Tests and linters / Tests (1.22) (pull_request) Successful in 3m34s
Tests and linters / Tests (1.23) (pull_request) Successful in 3m36s
Tests and linters / Staticcheck (pull_request) Successful in 3m35s
Tests and linters / Lint (pull_request) Successful in 4m18s
Tests and linters / Tests with -race (pull_request) Successful in 4m20s
Tests and linters / gopls check (pull_request) Successful in 4m25s
[#1317] go.mod: Use range over int
Since Go 1.22 a "for" statement with a "range" clause is able
to iterate through integer values from zero to an upper limit.

gopatch script:
@@
var i, e expression
@@
-for i := 0; i <= e - 1; i++ {
+for i := range e {
    ...
}

@@
var i, e expression
@@
-for i := 0; i <= e; i++ {
+for i := range e + 1 {
    ...
}

@@
var i, e expression
@@
-for i := 0; i < e; i++ {
+for i := range e {
    ...
}

Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
2024-09-03 13:00:54 +03:00
..
ape [#1279] adm: Interpret "root" name as empty for namespace target type 2024-07-29 12:57:40 +00:00
balance [#1210] adm: Fix error handling when contract not found 2024-07-02 13:03:40 +00:00
config [#1210] adm: Fix error handling when contract not found 2024-07-02 13:03:40 +00:00
constants [#932] adm: Move defaults for NNS to package constants 2024-02-28 18:57:16 +00:00
container [#1210] adm: Fix error handling when contract not found 2024-07-02 13:03:40 +00:00
contract [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
frostfsid [#1159] adm/frostfsid: Remove wallet requirement for list-* 2024-07-11 14:04:37 +00:00
generate [#1341] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 15:44:41 +00:00
helper [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
initialize [#1317] go.mod: Use range over int 2024-09-03 13:00:54 +03:00
netmap [#1210] adm: Fix error handling when contract not found 2024-07-02 13:03:40 +00:00
nns [#1210] adm: Fix error handling when contract not found 2024-07-02 13:03:40 +00:00
node [#1210] adm: Fix error handling when contract not found 2024-07-02 13:03:40 +00:00
notary [#973] node: Resolve perfsprint linter 2024-03-11 17:55:50 +03:00
policy [#1217] Fix grammar mistakes and misspelling 2024-07-01 19:14:25 +03:00
proxy [#1210] adm: Fix error handling when contract not found 2024-07-02 13:03:40 +00:00
root.go [#932] adm: Add commands to manipulate with NNS contract 2024-02-28 18:57:16 +00:00