lib/cloud_controller/diego/processes_sync.rb
Method sync
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
def sync
logger.info('run-process-sync')
@bump_freshness = true
diego_lrps = bbs_apps_client.fetch_scheduling_infos.index_by { |d| d.desired_lrp_key.process_guid }
logger.info('fetched-scheduling-infos')
Method process_workpool_exceptions
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
def process_workpool_exceptions(exceptions)
invalid_lrps = 0
exceptions.each do |e|
error_name = e.is_a?(CloudController::Errors::ApiError) ? e.name : e.class.name
if error_name == 'RunnerInvalidRequest'
- Read upRead up
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 sync
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
def sync
logger.info('run-process-sync')
@bump_freshness = true
diego_lrps = bbs_apps_client.fetch_scheduling_infos.index_by { |d| d.desired_lrp_key.process_guid }
logger.info('fetched-scheduling-infos')
- Read upRead up
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"