Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
  • Loading branch information
GaOrtiga and Copilot authored Apr 1, 2026
commit e5afe3fe4ef138d4d4775d08aef3cc556872d6d6
2 changes: 1 addition & 1 deletion server/src/main/java/com/cloud/vm/UserVmManagerImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -2718,7 +2718,7 @@ private void updateVmStateForFailedVmCreation(Long vmId, Long hostId) {
try {
_itMgr.stateTransitTo(vm, VirtualMachine.Event.OperationFailedToError, null);
} catch (NoTransitionException e1) {
logger.error("Error when transitioning state of [{}] due to [{}].", vm, e1.getMessage());
logger.error("Error when transitioning state of [{}].", vm, e1);
}
// destroy associated volumes for vm in error state
// get all volumes in non destroyed state
Expand Down
Loading