Skip to content
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.

Chery-pick to 0.11 servicing - "Fix for #942 - set uuid correctly" #946

Merged
merged 1 commit into from
Feb 22, 2017
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions esx_service/vmdk_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -999,8 +999,8 @@ def handle_stale_attach(vmdk_path, kv_uuid):
cur_vm.config.name)
return err(msg)
else:
logging.warning("Failed to find VM %s that attached the disk %s, resetting volume metadata",
cur_vm.config.name, vmdk_path)
logging.warning("Failed to find VM (id %s) attaching the disk %s, resetting volume metadata",
kv_uuid, vmdk_path)
ret = reset_vol_meta(vmdk_path)
if ret:
return ret
Expand Down