diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-18 06:03:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 06:03:58 -0400 |
commit | b5f7afd04a75c055c1626e67a067fef02af94fa9 (patch) | |
tree | 8bf7145f868a5edc4cd316c442b70cc786d92791 | |
parent | d0b3035c3e6ad6ab79c811c567c2222b9e4470f1 (diff) | |
parent | 43ead88e818ca6f455fbaa1de7b7cf9c91c4c05c (diff) | |
download | podman-b5f7afd04a75c055c1626e67a067fef02af94fa9.tar.gz podman-b5f7afd04a75c055c1626e67a067fef02af94fa9.tar.bz2 podman-b5f7afd04a75c055c1626e67a067fef02af94fa9.zip |
Merge pull request #6658 from mheon/experimental_no_more
Podman system service is no longer experimental
-rw-r--r-- | cmd/podman/system/service.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cmd/podman/system/service.go b/cmd/podman/system/service.go index ecd17c251..5301b855e 100644 --- a/cmd/podman/system/service.go +++ b/cmd/podman/system/service.go @@ -3,7 +3,6 @@ package system import ( - "fmt" "net/url" "os" "path/filepath" @@ -97,9 +96,6 @@ func service(cmd *cobra.Command, args []string) error { return registry.ContainerEngine().VarlinkService(registry.GetContext(), opts) } - logrus.Warn("This function is EXPERIMENTAL") - fmt.Fprintf(os.Stderr, "This function is EXPERIMENTAL.\n") - return restService(opts, cmd.Flags(), registry.PodmanConfig()) } |