Showing 43 of 43 total issues
Cyclomatic complexity for collect_cloudwatch_api_references! is too high. [31/11] Open
def collect_cloudwatch_api_references!(target_collection, event_data, depth = 0) # Check a reasonable depth, so this can't fail with max stack size raise "Depth 20 reached when scanning EmsEvent for Targets" if depth > 20 # Cloud
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Method collect_cloudwatch_api_references!
has a Cognitive Complexity of 28 (exceeds 11 allowed). Consider refactoring. Open
def collect_cloudwatch_api_references!(target_collection, event_data, depth = 0) # Check a reasonable depth, so this can't fail with max stack size raise "Depth 20 reached when scanning EmsEvent for Targets" if depth > 20 # Cloud
- Read upRead up
- Create a ticketCreate a ticket
Cyclomatic complexity for infer_related_vm_ems_refs_db! is too high. [14/11] Open
def infer_related_vm_ems_refs_db! changed_vms = manager.vms.where(:ems_ref => references(:vms)).includes(:key_pairs, :network_ports, :floating_ips, :orchestration_stack, :cloud_subnets) changed_vms.each do |vm| stack = vm.orchestration_stack
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Method response_handler_loop
has a Cognitive Complexity of 21 (exceeds 11 allowed). Consider refactoring. Open
def response_handler_loop @shutdown_instance_wait_thread = nil @response_data_dir = response_data_dir until @shutdown_instance_wait_thread @coordinators_mutex.synchronize do
- Read upRead up
- Create a ticketCreate a ticket
Cyclomatic complexity for perform_metadata_sync is too high. [12/11] Open
def perform_metadata_sync(extract_reply) ost = OpenStruct.new ost.reply = extract_reply ost.jobid = extract_reply[:job_id] job = Job.find_by(:id => ost.jobid)
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Method perform_metadata_sync
has a Cognitive Complexity of 14 (exceeds 11 allowed). Consider refactoring. Open
def perform_metadata_sync(extract_reply) ost = OpenStruct.new ost.reply = extract_reply ost.jobid = extract_reply[:job_id] job = Job.find_by(:id => ost.jobid)
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 2 locations. Consider refactoring. Open
def add_value_constraint(parameter, val) return unless val.key?('MinValue') || val.key?('MaxValue') constraint = OrchestrationTemplate::OrchestrationParameterRange.new constraint.min_value = to_number(val['MinValue']) if val['MinValue']
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 2 locations. Consider refactoring. Open
def add_length_constraint(parameter, val) return unless val.key?('MinLength') || val.key?('MaxLength') constraint = OrchestrationTemplate::OrchestrationParameterLength.new constraint.min_length = val['MinLength'].to_i if val['MinLength']
- Read upRead up
- Create a ticketCreate a ticket
Avoid parameter lists longer than 5 parameters. [8/5] Open
def raw_connect(access_key_id, secret_access_key, service, region, proxy_uri = nil, validate = false, uri = nil, assume_role: nil)
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Similar blocks of code found in 2 locations. Consider refactoring. Open
def shared_images return [] unless options.get_shared_images @shared_images_hashes ||= hash_collection.new( aws_ec2.client.describe_images(:executable_users => [:self],
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 2 locations. Consider refactoring. Open
def private_images return [] unless options.get_private_images @private_images_hashes ||= hash_collection.new( aws_ec2.client.describe_images(:owners => [:self],
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 6 locations. Consider refactoring. Open
def cloud_networks return [] if references(:cloud_networks).blank? multi_query(references(:cloud_networks)) do |refs| hash_collection.new(
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 6 locations. Consider refactoring. Open
def availability_zones return [] if references(:availability_zones).blank? multi_query(references(:availability_zones)) do |refs| hash_collection.new(
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 6 locations. Consider refactoring. Open
def cloud_volumes return [] if references(:cloud_volumes).blank? multi_query(references(:cloud_volumes)) do |refs| hash_collection.new(
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 6 locations. Consider refactoring. Open
def cloud_volume_snapshots return [] if references(:cloud_volume_snapshots).blank? multi_query(references(:cloud_volume_snapshots)) do |refs| hash_collection.new(
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 6 locations. Consider refactoring. Open
def referenced_images return [] if references(:miq_templates).blank? multi_query(references(:miq_templates)) do |refs| hash_collection.new(
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 6 locations. Consider refactoring. Open
def cloud_subnets return [] if references(:cloud_subnets).blank? multi_query(references(:cloud_subnets)) do |refs| hash_collection.new(
- Read upRead up
- Create a ticketCreate a ticket
Identical blocks of code found in 2 locations. Consider refactoring. Open
{ :component => 'text-field', :name => 'iops', :id => 'iops', :label => _('IOPS'),
- Read upRead up
- Create a ticketCreate a ticket
Identical blocks of code found in 2 locations. Consider refactoring. Open
private_class_method def self.provider_region_options ManageIQ::Providers::Amazon::Regions .all .sort_by { |r| r[:description].downcase } .map do |r|
- Read upRead up
- Create a ticketCreate a ticket
Identical blocks of code found in 2 locations. Consider refactoring. Open
{ :component => 'text-field', :name => 'iops', :id => 'iops', :label => _('IOPS'),
- Read upRead up
- Create a ticketCreate a ticket