frostfs-node/pkg/services/policer
Evgenii Stratonikov 03976c6ed5 [#1341] .golangci.yml: Replace exportloopref with copyloopvar
exportloopref is deprecated.
gopatch:
```
@@
var index, value identifier
var slice expression
@@
for index, value := range slice {
...
-value := value
...
}

@@
var index, value identifier
var slice expression
@@
for index, value := range slice {
...
-index := index
...
}

@@
var value identifier
var channel expression
@@
for value := range channel {
...
-value := value
...
}
```

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
2024-08-28 15:44:41 +00:00
..
check.go [#566] policer: Move isClientErrMaintenance to frostfs-sdk-go 2024-06-18 10:20:45 +03:00
check_test.go [#92] Refactor policer and add some unit tests 2023-07-03 07:05:31 +00:00
ec.go [#1341] .golangci.yml: Replace exportloopref with copyloopvar 2024-08-28 15:44:41 +00:00
ec_test.go [#1231] policer: Add EC node-off unit test 2024-07-05 12:11:36 +03:00
metrics.go [#735] policer: Allow to provide metrics from the outside 2023-10-11 15:14:13 +03:00
nodecache.go [#92] Refactor policer and add some unit tests 2023-07-03 07:05:31 +00:00
option.go [#1129] policer: Restore EC object 2024-05-17 14:36:18 +03:00
policer.go [#956] policer: Remove WithMaxCapacity option 2024-02-08 15:49:43 +00:00
policer_test.go [#1129] policer: Restore EC object 2024-05-17 14:36:18 +03:00
process.go [#969] policer: Restrict the number of remembered errors 2024-02-08 10:10:41 +03:00