The following pull request was submitted through Github.
It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/8087

This e-mail was sent by the LXC bot, direct replies will not reach the author
unless they happen to be subscribed to this list.

=== Description (from pull-request) ===
Signed-off-by: Stéphane Graber <stgra...@ubuntu.com>
From 7b5aae3986c7e364e62e12064c73ba439503ddd9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgra...@ubuntu.com>
Date: Tue, 27 Oct 2020 17:35:49 -0400
Subject: [PATCH] lxd/storage/zfs: No need to remove dashes from UUID
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgra...@ubuntu.com>
---
 lxd/storage/drivers/driver_zfs_volumes.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lxd/storage/drivers/driver_zfs_volumes.go 
b/lxd/storage/drivers/driver_zfs_volumes.go
index 1895fe6a4b..811fb11450 100644
--- a/lxd/storage/drivers/driver_zfs_volumes.go
+++ b/lxd/storage/drivers/driver_zfs_volumes.go
@@ -80,7 +80,7 @@ func (d *zfs) CreateVolume(vol Volume, filler *VolumeFiller, 
op *operations.Oper
                        // be restored in the future and a new cached image 
volume will be created instead.
                        if volSizeBytes > poolVolSizeBytes {
                                d.logger.Debug("Renaming deleted cached image 
volume so that regeneration is used")
-                               randomVol := NewVolume(d, d.name, vol.volType, 
vol.contentType, strings.Replace(uuid.NewRandom().String(), "-", "", -1), 
vol.config, vol.poolConfig)
+                               randomVol := NewVolume(d, d.name, vol.volType, 
vol.contentType, uuid.NewRandom().String(), vol.config, vol.poolConfig)
 
                                _, err := shared.RunCommand("/proc/self/exe", 
"forkzfs", "--", "rename", d.dataset(vol, true), d.dataset(randomVol, true))
                                if err != nil {
_______________________________________________
lxc-devel mailing list
lxc-devel@lists.linuxcontainers.org
http://lists.linuxcontainers.org/listinfo/lxc-devel

Reply via email to