Uh oh!
There was an error while loading. Please reload this page.
server: fix NPE when migrate vm away with volumes - #13131
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@## 4.20 #13131 +/- ##
============================================
- Coverage 16.27% 16.26% -0.01% + Complexity 13440 13438 -2
============================================
Files 5665 5665 Lines 500555 500555 Branches 60789 60789 ============================================
- Hits 81445 81438 -7 - Misses 410004 410012 +8 + Partials 9106 9105 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
Fixes a NullPointerException during host maintenance VM migration when the VM uses a customized/dynamic compute offering (where service_offering.cpu/ram_size may be NULL) by fetching the VM-specific computed service offering.
Changes:
- Use the
ServiceOfferingDao.findById(vmId, offeringId)overload when migrating a VM away with volumes so dynamic offering values are populated fromuser_vm_details.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| final DataCenterDeployment plan = new DataCenterDeployment(host.getDataCenterId(), host.getPodId(), host.getClusterId(), null, null, null); | ||
| ServiceOfferingVO offeringVO = serviceOfferingDao.findById(vm.getServiceOfferingId()); | ||
| ServiceOfferingVO offeringVO = serviceOfferingDao.findById(vm.getId(), vm.getServiceOfferingId()); | ||
| final VirtualMachineProfile profile = new VirtualMachineProfileImpl(vm, null, offeringVO, null, null); |
weizhouapache
commented
May 18, 2026
@blueorangutan package |
blueorangutan
commented
May 18, 2026
@weizhouapache a [SL] Jenkins job has been kicked to build packages. It will be bundled with KVM, XenServer and VMware SystemVM templates. I'll keep you posted as I make progress. |
blueorangutan
commented
May 18, 2026
Packaging result [SF]: ✔️ el8 ✔️ el9 ✔️ el10 ✔️ debian ✔️ suse15. SL-JID 17893 |
weizhouapache
commented
May 18, 2026
@blueorangutan test |
blueorangutan
commented
May 18, 2026
@weizhouapache a [SL] Trillian-Jenkins test job (ol8 mgmt + kvm-ol8) has been kicked to run smoke tests |
blueorangutan
commented
May 19, 2026
[SF] Trillian test result (tid-16104)
|
winterhazel
left a comment
There was a problem hiding this comment.
Looks ok. I validated manually that the reported issue does not happen anymore.
winterhazel
commented
Jun 11, 2026
@weizhouapache can we attempt one more CI run here? |
weizhouapache
commented
Jun 12, 2026
Great, thanks for testing |
weizhouapache
commented
Jun 12, 2026
@blueorangutan package |
blueorangutan
commented
Jun 12, 2026
@weizhouapache a [SL] Jenkins job has been kicked to build packages. It will be bundled with KVM, XenServer and VMware SystemVM templates. I'll keep you posted as I make progress. |
blueorangutan
commented
Jun 12, 2026
Packaging result [SF]: ✔️ el8 ✔️ el9 ✔️ el10 ✔️ debian ✔️ suse15. SL-JID 18237 |
weizhouapache
commented
Jun 12, 2026
@blueorangutan test |
blueorangutan
commented
Jun 12, 2026
@weizhouapache a [SL] Trillian-Jenkins test job (ol8 mgmt + kvm-ol8) has been kicked to run smoke tests |
blueorangutan
commented
Jun 12, 2026
[SF] Trillian test result (tid-16295)
|
Description
This PR fixes#13130
Types of changes
Feature/Enhancement Scale or Bug Severity
Feature/Enhancement Scale
Bug Severity
Screenshots (if appropriate):
How Has This Been Tested?
How did you try to break this feature and the system with this change?