Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cmd/beekeeper/cmd/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ The check command executes various tests against your Bee cluster including:
• pushsync: Validates data synchronization between nodes
• retrieval: Tests data retrieval capabilities
• settlements: Verifies payment settlements between nodes
• kademlia: Tests the overlay network topology
• and many more...

Use --checks flag to specify which tests to run, or run all tests sequentially.
Expand Down
188 changes: 0 additions & 188 deletions pkg/check/kademlia/kademlia.go

This file was deleted.

19 changes: 0 additions & 19 deletions pkg/config/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import (
"github.com/ethersphere/beekeeper/pkg/check/fullconnectivity"
"github.com/ethersphere/beekeeper/pkg/check/gc"
"github.com/ethersphere/beekeeper/pkg/check/gsoc"
"github.com/ethersphere/beekeeper/pkg/check/kademlia"
"github.com/ethersphere/beekeeper/pkg/check/load"
"github.com/ethersphere/beekeeper/pkg/check/longavailability"
"github.com/ethersphere/beekeeper/pkg/check/manifest"
Expand Down Expand Up @@ -195,24 +194,6 @@ var Checks = map[string]CheckType{
return opts, nil
},
},
"kademlia": {
NewAction: kademlia.NewCheck,
NewOptions: func(checkGlobalConfig CheckGlobalConfig, check Check) (any, error) {
checkOpts := new(struct {
Dynamic *bool `yaml:"dynamic"`
})
if err := check.Options.Decode(checkOpts); err != nil {
return nil, fmt.Errorf("decoding check %s options: %w", check.Type, err)
}
opts := kademlia.NewDefaultOptions()

if err := applyCheckConfig(checkGlobalConfig, checkOpts, &opts); err != nil {
return nil, fmt.Errorf("applying options: %w", err)
}

return opts, nil
},
},
"manifest": {
NewAction: manifest.NewCheck,
NewOptions: func(checkGlobalConfig CheckGlobalConfig, check Check) (any, error) {
Expand Down