From 952b48bd68eb72e21702e4e39d8b107456426d47 Mon Sep 17 00:00:00 2001 From: Soam Vasani Date: Thu, 7 Jun 2018 14:17:27 -0700 Subject: [PATCH] Environment warning message bugfix (#725) --- fission/environment.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fission/environment.go b/fission/environment.go index 089870ee..8b33773e 100644 --- a/fission/environment.go +++ b/fission/environment.go @@ -57,9 +57,7 @@ func envCreate(c *cli.Context) error { envList, err := client.EnvironmentList(envNamespace) if err == nil && len(envList) > 0 { - warn(fmt.Sprintf("%d environment(s) are present in this ns: %s. All these envs share"+ - " the same service account token, with previleges to view secrets of all the functions referencing them. "+ - "Envs can be created in different ns if isolation is needed", len(envList), envNamespace)) + verbose(2, "%d environment(s) are present in the %s namespace. These environments are not isolated from each other; use separate namespaces if you need isolation.", len(envList), envNamespace) } var poolsize int