cmd/eksterd/hubbackend.go
Method hubIncomingBackend.run
has a Cognitive Complexity of 31 (exceeds 20 allowed). Consider refactoring. Open
Open
func (h *hubIncomingBackend) run() error {
ticker := time.NewTicker(10 * time.Minute)
quit := make(chan struct{})
go func() {
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method hubIncomingBackend.Feeds
has a Cognitive Complexity of 27 (exceeds 20 allowed). Consider refactoring. Open
Open
func (h *hubIncomingBackend) Feeds() ([]Feed, error) {
conn := h.pool.Get()
defer conn.Close()
feeds := []Feed{}
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method hubIncomingBackend.CreateFeed
has 6 return statements (exceeds 4 allowed). Open
Open
func (h *hubIncomingBackend) CreateFeed(topic string, channel string) (int64, error) {
conn := h.pool.Get()
defer conn.Close()
// TODO(peter): check if topic already is registered
- Create a ticketCreate a ticket
FIXME found Open
Open
// FIXME(peter): replace with set of currently checked feeds
- Create a ticketCreate a ticket
- Exclude checks
TODO found Open
Open
// TODO(peter): check if topic already is registered
- Create a ticketCreate a ticket
- Exclude checks