Method synchronize_on_mark
has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring. Open
def self.synchronize_on_mark(node, mark, fatal = false, timeout = 60)
return unless CrowbarPacemakerHelper.cluster_enabled?(node)
attribute = "#{prefix}#{mark}"
cluster_name = CrowbarPacemakerHelper.cluster_name(node)
- 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 synchronize_on_mark
has 68 lines of code (exceeds 25 allowed). Consider refactoring. Open
def self.synchronize_on_mark(node, mark, fatal = false, timeout = 60)
return unless CrowbarPacemakerHelper.cluster_enabled?(node)
attribute = "#{prefix}#{mark}"
cluster_name = CrowbarPacemakerHelper.cluster_name(node)
- Create a ticketCreate a ticket
Method wait_for_mark_from_founder
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
def self.wait_for_mark_from_founder(node, mark, fatal = false, timeout = 60)
return unless CrowbarPacemakerHelper.cluster_enabled?(node)
return if CrowbarPacemakerHelper.is_cluster_founder?(node)
if CrowbarPacemakerHelper.being_upgraded?(node)
Chef::Log.debug("Node is being upgraded." \
- Create a ticketCreate a ticket
Method wait_for_mark_from_founder
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def self.wait_for_mark_from_founder(node, mark, fatal = false, timeout = 60)
return unless CrowbarPacemakerHelper.cluster_enabled?(node)
return if CrowbarPacemakerHelper.is_cluster_founder?(node)
if CrowbarPacemakerHelper.being_upgraded?(node)
Chef::Log.debug("Node is being upgraded." \
- 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 set_mark_if_founder
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def self.set_mark_if_founder(node, mark)
return unless CrowbarPacemakerHelper.cluster_enabled?(node)
return unless CrowbarPacemakerHelper.is_cluster_founder?(node)
attribute = "#{prefix}#{mark}"
- 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"