From 06a51142ac34ae25681e4ce7045666bda5c407db Mon Sep 17 00:00:00 2001 From: Kai Huang Date: Mon, 7 Sep 2020 16:07:43 +0800 Subject: [PATCH] Support init_spark_on_k8s (#2813) * initial * fix * code refactor * bug fix * update docker * style --- python/orca/src/bigdl/orca/ray/raycontext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/orca/src/bigdl/orca/ray/raycontext.py b/python/orca/src/bigdl/orca/ray/raycontext.py index 278a5e1496d..65f3034ea0d 100755 --- a/python/orca/src/bigdl/orca/ray/raycontext.py +++ b/python/orca/src/bigdl/orca/ray/raycontext.py @@ -106,7 +106,7 @@ def _prepare_env(self): if self.env: # Add in env argument if any MKL setting is needed. modified_env.update(self.env) if self.verbose: - print("Executing with these environment setting:") + print("Executing with these environment settings:") for pair in modified_env.items(): print(pair) print("The $PATH is: {}".format(modified_env["PATH"]))