forked from TrueCloudLab/frostfs-node
[#281] service/audit: Fix typos
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
e5108cf135
commit
7174abcc7c
3 changed files with 6 additions and 6 deletions
|
@ -99,5 +99,5 @@ func defaultConfiguration(cfg *viper.Viper) {
|
|||
cfg.SetDefault("audit.timeout.search", "10s")
|
||||
cfg.SetDefault("audit.pdp.max_sleep_interval", "5s")
|
||||
cfg.SetDefault("audit.pdp.pairs_pool_size", "10")
|
||||
cfg.SetDefault("audit.por.pairs_pool_size", "10")
|
||||
cfg.SetDefault("audit.por.pool_size", "10")
|
||||
}
|
||||
|
|
|
@ -226,7 +226,7 @@ func New(ctx context.Context, log *zap.Logger, cfg *viper.Viper) (*Server, error
|
|||
})
|
||||
|
||||
pdpPoolSize := cfg.GetInt("audit.pdp.pairs_pool_size")
|
||||
porPoolSize := cfg.GetInt("audit.por.pairs_pool_size")
|
||||
porPoolSize := cfg.GetInt("audit.por.pool_size")
|
||||
|
||||
auditTaskManager := audittask.New(
|
||||
audittask.WithQueueCapacity(cfg.GetUint32("audit.task.queue_capacity")),
|
||||
|
|
|
@ -71,16 +71,16 @@ func (c *Context) checkStorageGroupPoR(ind int, sg *object.ID) {
|
|||
flat[i], flat[j] = flat[j], flat[i]
|
||||
})
|
||||
|
||||
for i := range flat {
|
||||
for j := range flat {
|
||||
accRequests++
|
||||
if i > 0 { // in best case audit get object header on first iteration
|
||||
if j > 0 { // in best case audit get object header on first iteration
|
||||
accRetries++
|
||||
}
|
||||
|
||||
hdr, err := c.cnrCom.GetHeader(c.task, flat[i], members[i], true)
|
||||
hdr, err := c.cnrCom.GetHeader(c.task, flat[j], members[i], true)
|
||||
if err != nil {
|
||||
c.log.Debug("can't head object",
|
||||
zap.String("remote_node", flat[i].Address()),
|
||||
zap.String("remote_node", flat[j].Address()),
|
||||
zap.Stringer("oid", members[i]))
|
||||
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue