Skip to content

Commit b22b7d5

Browse files
committed
rubocop line length warning
minor change
1 parent 5e57b0f commit b22b7d5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

hbase-shell/src/main/ruby/shell/commands/list_regions.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,12 @@ def command(table_name, options = nil, cols = nil)
113113
region_load = region_load_map.get(hregion_info.getRegionName)
114114

115115
if region_load.nil?
116-
puts "Can not find all details for region: #{hregion_info.getRegionNameAsString.strip} , it may be disabled or in transition\n"
116+
puts "Can not find all details for region: #{hregion_info.getRegionNameAsString.strip} ," \
117+
" it may be disabled or in transition\n"
117118
else
118119
# Ignore regions which exceed our locality threshold
119-
next unless accept_region_for_locality? region_load.getDataLocality, locality_threshold
120+
next unless accept_region_for_locality? region_load.getDataLocality,
121+
locality_threshold
120122
end
121123
result_hash = {}
122124

0 commit comments

Comments
 (0)