diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-13 14:46:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 14:46:00 +0200 |
commit | 1c156f22678b3f476ea78fa9e22982c66a7e1559 (patch) | |
tree | fe187cfbc2a6c5fdca821d56f40f506dc9e306f0 /libpod/network/cni | |
parent | e3cf9b685a0099d55cd4d8086757c78bd64e9371 (diff) | |
parent | 8600bce53a962cee3ff174d4b3745fa0f49afa3f (diff) | |
download | podman-1c156f22678b3f476ea78fa9e22982c66a7e1559.tar.gz podman-1c156f22678b3f476ea78fa9e22982c66a7e1559.tar.bz2 podman-1c156f22678b3f476ea78fa9e22982c66a7e1559.zip |
Merge pull request #11948 from rhatdan/codespell
codespell code
Diffstat (limited to 'libpod/network/cni')
-rw-r--r-- | libpod/network/cni/cni_conversion.go | 2 | ||||
-rw-r--r-- | libpod/network/cni/config_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libpod/network/cni/cni_conversion.go b/libpod/network/cni/cni_conversion.go index 93d871767..01e149114 100644 --- a/libpod/network/cni/cni_conversion.go +++ b/libpod/network/cni/cni_conversion.go @@ -103,7 +103,7 @@ func createNetworkFromCNIConfigList(conf *libcni.NetworkConfigList, confPath str } default: - // A warning would be good but users would get this warning everytime so keep this at info level. + // A warning would be good but users would get this warning every time so keep this at info level. logrus.Infof("Unsupported CNI config type %s in %s, this network can still be used but inspect or list cannot show all information", firstPlugin.Network.Type, confPath) } diff --git a/libpod/network/cni/config_test.go b/libpod/network/cni/config_test.go index 5b0feb859..5181cd900 100644 --- a/libpod/network/cni/config_test.go +++ b/libpod/network/cni/config_test.go @@ -1313,7 +1313,7 @@ var _ = Describe("Config", func() { Expect(networks).To(HaveLen(0)) }) - It("crate bridge network with used interface name", func() { + It("create bridge network with used interface name", func() { network := types.Network{ NetworkInterface: "cni-podman9", } |