File tree Expand file tree Collapse file tree 6 files changed +324
-321
lines changed
app/models/manageiq/providers/ibm_power_vc/cloud_manager Expand file tree Collapse file tree 6 files changed +324
-321
lines changed Original file line number Diff line number Diff line change 4343 - name : Run tests
4444 run : bundle exec rake
4545 - name : Report code coverage
46- if : " ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0 ' }}"
46+ if : ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.1 ' }}
4747 continue-on-error : true
48- uses : paambaati/codeclimate-action@v6
48+ uses : paambaati/codeclimate-action@v8
Original file line number Diff line number Diff line change 11{
22 "settingsInheritedFrom": "ManageIQ/whitesource-config@master"
33}
4-
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ enableGlobalCache: true
44
55nodeLinker : node-modules
66
7- yarnPath : .yarn/releases/yarn-4.2.2 .cjs
7+ yarnPath : .yarn/releases/yarn-4.3.1 .cjs
Original file line number Diff line number Diff line change 22
33class ManageIQ ::Providers ::IbmPowerVc ::CloudManager ::Vm < ManageIQ ::Providers ::Openstack ::CloudManager ::Vm
44 supports :html5_console do
5- return _ ( "VM Console not supported because VM is not powered on" ) unless current_state == "on"
6- return _ ( "VM Console not supported because VM is orphaned" ) if orphaned?
7- return _ ( "VM Console not supported because VM is archived" ) if archived?
5+ if current_state != "on"
6+ _ ( "VM Console not supported because VM is not powered on" )
7+ elsif orphaned?
8+ _ ( "VM Console not supported because VM is orphaned" )
9+ elsif archived?
10+ _ ( "VM Console not supported because VM is archived" )
11+ end
812 end
913 supports :launch_html5_console
1014
Original file line number Diff line number Diff line change 1818 "npm" : " >= 6.0.0" ,
1919 "yarn" : " >= 0.20.1"
2020 },
21- "packageManager" : " yarn@4.2.2 "
21+ "packageManager" : " yarn@4.3.1 "
2222}
You can’t perform that action at this time.
0 commit comments