From 15a232fd06e062f8aae4e89e1f520f44c875daeb Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 11 Aug 2015 18:11:41 -0700 Subject: [PATCH] graphdriver/zfs: fix GetMetadata() comment Commit e27c904 added a wrong and misleading comment to GetMetadata(). Fix it using the wording from commit 407a626 which introduced GetMetadata(). Signed-off-by: Kir Kolyshkin --- daemon/graphdriver/zfs/zfs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/graphdriver/zfs/zfs.go b/daemon/graphdriver/zfs/zfs.go index 4b0cac3c5c..0142890b0d 100644 --- a/daemon/graphdriver/zfs/zfs.go +++ b/daemon/graphdriver/zfs/zfs.go @@ -200,7 +200,7 @@ func (d *Driver) Status() [][2]string { } } -// GetMetadata is used for implementing the graphdriver.ProtoDriver interface. ZFS does not currently have any meta data. +// GetMetadata returns image/container metadata related to graph driver func (d *Driver) GetMetadata(id string) (map[string]string, error) { return nil, nil }