satellite/orders: remove unused node status logging flag
Change-Id: I24da78a11cc5d3d88cdf6aca85c4238e4086e59c
This commit is contained in:
parent
4d2a505788
commit
ba4c3d9986
@ -333,7 +333,6 @@ func NewAPI(log *zap.Logger, full *identity.FullIdentity, db DB,
|
|||||||
Address: config.Contact.ExternalAddress,
|
Address: config.Contact.ExternalAddress,
|
||||||
},
|
},
|
||||||
config.Repairer.MaxExcessRateOptimalThreshold,
|
config.Repairer.MaxExcessRateOptimalThreshold,
|
||||||
config.Orders.NodeStatusLogging,
|
|
||||||
)
|
)
|
||||||
if err := pb.DRPCRegisterOrders(peer.Server.DRPC(), peer.Orders.Endpoint); err != nil {
|
if err := pb.DRPCRegisterOrders(peer.Server.DRPC(), peer.Orders.Endpoint); err != nil {
|
||||||
return nil, errs.Combine(err, peer.Close())
|
return nil, errs.Combine(err, peer.Close())
|
||||||
|
@ -274,7 +274,6 @@ func New(log *zap.Logger, full *identity.FullIdentity, db DB,
|
|||||||
Address: config.Contact.ExternalAddress,
|
Address: config.Contact.ExternalAddress,
|
||||||
},
|
},
|
||||||
config.Repairer.MaxExcessRateOptimalThreshold,
|
config.Repairer.MaxExcessRateOptimalThreshold,
|
||||||
config.Orders.NodeStatusLogging,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -621,7 +621,7 @@ func TestProcessOrders(t *testing.T) {
|
|||||||
func TestRandomSampleLimits(t *testing.T) {
|
func TestRandomSampleLimits(t *testing.T) {
|
||||||
orderlimits := []*pb.AddressedOrderLimit{{}, {}, {}, {}}
|
orderlimits := []*pb.AddressedOrderLimit{{}, {}, {}, {}}
|
||||||
|
|
||||||
s := orders.NewService(nil, nil, nil, nil, 0, nil, 0, false)
|
s := orders.NewService(nil, nil, nil, nil, 0, nil, 0)
|
||||||
t.Run("sample size is less than the number of order limits", func(t *testing.T) {
|
t.Run("sample size is less than the number of order limits", func(t *testing.T) {
|
||||||
var nilCount int
|
var nilCount int
|
||||||
sampleSize := 2
|
sampleSize := 2
|
||||||
|
@ -34,7 +34,7 @@ type Config struct {
|
|||||||
FlushBatchSize int `help:"how many items in the rollups write cache before they are flushed to the database" devDefault:"20" releaseDefault:"10000"`
|
FlushBatchSize int `help:"how many items in the rollups write cache before they are flushed to the database" devDefault:"20" releaseDefault:"10000"`
|
||||||
FlushInterval time.Duration `help:"how often to flush the rollups write cache to the database" devDefault:"30s" releaseDefault:"1m"`
|
FlushInterval time.Duration `help:"how often to flush the rollups write cache to the database" devDefault:"30s" releaseDefault:"1m"`
|
||||||
ReportedRollupsReadBatchSize int `help:"how many records to read in a single transaction when calculating billable bandwidth" default:"1000"`
|
ReportedRollupsReadBatchSize int `help:"how many records to read in a single transaction when calculating billable bandwidth" default:"1000"`
|
||||||
NodeStatusLogging bool `help:"log the offline/disqualification status of nodes" default:"false"`
|
NodeStatusLogging bool `hidden:"true" help:"deprecated, log the offline/disqualification status of nodes" default:"false"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Service for creating order limits.
|
// Service for creating order limits.
|
||||||
@ -48,7 +48,6 @@ type Service struct {
|
|||||||
satelliteAddress *pb.NodeAddress
|
satelliteAddress *pb.NodeAddress
|
||||||
orderExpiration time.Duration
|
orderExpiration time.Duration
|
||||||
repairMaxExcessRateOptimalThreshold float64
|
repairMaxExcessRateOptimalThreshold float64
|
||||||
nodeStatusLogging bool
|
|
||||||
rngMu sync.Mutex
|
rngMu sync.Mutex
|
||||||
rng *mathrand.Rand
|
rng *mathrand.Rand
|
||||||
}
|
}
|
||||||
@ -57,7 +56,7 @@ type Service struct {
|
|||||||
func NewService(
|
func NewService(
|
||||||
log *zap.Logger, satellite signing.Signer, overlay *overlay.Service,
|
log *zap.Logger, satellite signing.Signer, overlay *overlay.Service,
|
||||||
orders DB, orderExpiration time.Duration, satelliteAddress *pb.NodeAddress,
|
orders DB, orderExpiration time.Duration, satelliteAddress *pb.NodeAddress,
|
||||||
repairMaxExcessRateOptimalThreshold float64, nodeStatusLogging bool,
|
repairMaxExcessRateOptimalThreshold float64,
|
||||||
) *Service {
|
) *Service {
|
||||||
return &Service{
|
return &Service{
|
||||||
log: log,
|
log: log,
|
||||||
@ -67,7 +66,6 @@ func NewService(
|
|||||||
satelliteAddress: satelliteAddress,
|
satelliteAddress: satelliteAddress,
|
||||||
orderExpiration: orderExpiration,
|
orderExpiration: orderExpiration,
|
||||||
repairMaxExcessRateOptimalThreshold: repairMaxExcessRateOptimalThreshold,
|
repairMaxExcessRateOptimalThreshold: repairMaxExcessRateOptimalThreshold,
|
||||||
nodeStatusLogging: nodeStatusLogging,
|
|
||||||
rng: mathrand.New(mathrand.NewSource(time.Now().UnixNano())),
|
rng: mathrand.New(mathrand.NewSource(time.Now().UnixNano())),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -161,7 +161,6 @@ func NewRepairer(log *zap.Logger, full *identity.FullIdentity,
|
|||||||
Address: config.Contact.ExternalAddress,
|
Address: config.Contact.ExternalAddress,
|
||||||
},
|
},
|
||||||
config.Repairer.MaxExcessRateOptimalThreshold,
|
config.Repairer.MaxExcessRateOptimalThreshold,
|
||||||
config.Orders.NodeStatusLogging,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
3
scripts/testdata/satellite-config.yaml.lock
vendored
3
scripts/testdata/satellite-config.yaml.lock
vendored
@ -439,9 +439,6 @@ identity.key-path: /root/.local/share/storj/identity/satellite/identity.key
|
|||||||
# how often to flush the rollups write cache to the database
|
# how often to flush the rollups write cache to the database
|
||||||
# orders.flush-interval: 1m0s
|
# orders.flush-interval: 1m0s
|
||||||
|
|
||||||
# log the offline/disqualification status of nodes
|
|
||||||
# orders.node-status-logging: false
|
|
||||||
|
|
||||||
# how many records to read in a single transaction when calculating billable bandwidth
|
# how many records to read in a single transaction when calculating billable bandwidth
|
||||||
# orders.reported-rollups-read-batch-size: 1000
|
# orders.reported-rollups-read-batch-size: 1000
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user