The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/8263
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: Thomas Parrott <thomas.parr...@canonical.com>
From c83abda1839a80b74b60d6a238b7e84968fd0eea Mon Sep 17 00:00:00 2001 From: Thomas Parrott <thomas.parr...@canonical.com> Date: Wed, 16 Dec 2020 15:55:53 +0000 Subject: [PATCH] lxd/db/networks: Corrects comment on GetCreatedNetworks Signed-off-by: Thomas Parrott <thomas.parr...@canonical.com> --- lxd/db/networks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxd/db/networks.go b/lxd/db/networks.go index be30549ed8..bca1e1ea4f 100644 --- a/lxd/db/networks.go +++ b/lxd/db/networks.go @@ -422,7 +422,7 @@ func (c *Cluster) GetNetworks(project string) ([]string, error) { return c.networks(project, "") } -// GetCreatedNetworks returns the names of all networks that are not in state networkCreated. +// GetCreatedNetworks returns the names of all networks that are in state networkCreated. func (c *Cluster) GetCreatedNetworks(project string) ([]string, error) { return c.networks(project, "state=?", networkCreated) }
_______________________________________________ lxc-devel mailing list lxc-devel@lists.linuxcontainers.org http://lists.linuxcontainers.org/listinfo/lxc-devel