aboutsummaryrefslogtreecommitdiff
path: root/go/topology/topology_compact.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/topology/topology_compact.go')
-rw-r--r--go/topology/topology_compact.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/topology/topology_compact.go b/go/topology/topology_compact.go
index e25e394d4..9c9abde4f 100644
--- a/go/topology/topology_compact.go
+++ b/go/topology/topology_compact.go
@@ -41,7 +41,7 @@ func batchVacuumVolumeCompact(vl *VolumeLayout, vid storage.VolumeId, locationli
ch := make(chan bool, locationlist.Length())
for index, dn := range locationlist.list {
go func(index int, url string, vid storage.VolumeId) {
- fmt.Println(index, "Start vacuuming", vid, "on", dn.Url())
+ fmt.Println(index, "Start vacuuming", vid, "on", url)
if e := vacuumVolume_Compact(url, vid); e != nil {
fmt.Println(index, "Error when vacuuming", vid, "on", url, e)
ch <- false