Skip to content
Draft
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
add clvm pools with deterministic uuid , so as to prevent adding the …
…same pool twic
  • Loading branch information
Pearl Dsilva
Pearl Dsilva committed May 28, 2026
commit 4b6687639a854301ca375f0d3405b9ee31b43685
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public DataStore initialize(Map<String, Object> dsInfos) {

if (existingUuid != null) {
uuid = (String)existingUuid;
} else if (scheme.equalsIgnoreCase("sharedmountpoint") || scheme.equalsIgnoreCase("clvm")) {
} else if (scheme.equalsIgnoreCase("sharedmountpoint")) {
uuid = UUID.randomUUID().toString();
} else if ("PreSetup".equalsIgnoreCase(scheme) && !HypervisorType.VMware.equals(hypervisorType)) {
uuid = hostPath.replace("/", "");
Expand Down