diff options
author | Toshiki Sonoda <sonoda.toshiki@fujitsu.com> | 2022-07-08 08:33:20 +0900 |
---|---|---|
committer | Toshiki Sonoda <sonoda.toshiki@fujitsu.com> | 2022-07-08 08:33:20 +0900 |
commit | d1754bdd4f299c8d92671493add4a69ef7850e1d (patch) | |
tree | c4fd3d741d641d16267aa8431c430cc095ac250e /pkg/domain/infra/tunnel | |
parent | 700f1faf6e5449e13970fc17311b09e4ca9ac2c3 (diff) | |
download | podman-d1754bdd4f299c8d92671493add4a69ef7850e1d.tar.gz podman-d1754bdd4f299c8d92671493add4a69ef7850e1d.tar.bz2 podman-d1754bdd4f299c8d92671493add4a69ef7850e1d.zip |
Refactored networkPrune function
Refactored the networkPrune function to improve readability.
This commit changes the `networkPrune` function to
use the `PrintNetworkPruneResults` function.
[NO NEW TESTS NEEDED]
Signed-off-by: Toshiki Sonoda <sonoda.toshiki@fujitsu.com>
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r-- | pkg/domain/infra/tunnel/network.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/tunnel/network.go b/pkg/domain/infra/tunnel/network.go index 415999a96..56c32443c 100644 --- a/pkg/domain/infra/tunnel/network.go +++ b/pkg/domain/infra/tunnel/network.go @@ -95,7 +95,7 @@ func (ic *ContainerEngine) NetworkExists(ctx context.Context, networkname string }, nil } -// Network prune removes unused cni networks +// Network prune removes unused networks func (ic *ContainerEngine) NetworkPrune(ctx context.Context, options entities.NetworkPruneOptions) ([]*entities.NetworkPruneReport, error) { opts := new(network.PruneOptions).WithFilters(options.Filters) return network.Prune(ic.ClientCtx, opts) |