From 47b7b76a5af13e0c8067d2425754ff29c8c99d0a Mon Sep 17 00:00:00 2001 From: "Siyuan (Ryans) Zhuang" Date: Wed, 7 Oct 2020 19:12:42 -0700 Subject: [PATCH] [Example] commands need to be quoted (#11224) --- python/ray/autoscaler/aws/example-full.yaml | 2 +- python/ray/autoscaler/aws/example-ml.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ray/autoscaler/aws/example-full.yaml b/python/ray/autoscaler/aws/example-full.yaml index 2c83ed7e0..189cc144f 100644 --- a/python/ray/autoscaler/aws/example-full.yaml +++ b/python/ray/autoscaler/aws/example-full.yaml @@ -136,7 +136,7 @@ setup_commands: # Custom commands that will be run on the head node after common setup. head_setup_commands: - - pip install boto3>=1.4.8 # 1.4.8 adds InstanceMarketOptions + - pip install 'boto3>=1.4.8' # 1.4.8 adds InstanceMarketOptions # Custom commands that will be run on worker nodes after common setup. worker_setup_commands: [] diff --git a/python/ray/autoscaler/aws/example-ml.yaml b/python/ray/autoscaler/aws/example-ml.yaml index 0a965bbf5..6353f3c84 100644 --- a/python/ray/autoscaler/aws/example-ml.yaml +++ b/python/ray/autoscaler/aws/example-ml.yaml @@ -139,7 +139,7 @@ setup_commands: # Custom commands that will be run on the head node after common setup. head_setup_commands: - - pip install boto3>=1.4.8 # 1.4.8 adds InstanceMarketOptions + - pip install 'boto3>=1.4.8' # 1.4.8 adds InstanceMarketOptions # Custom commands that will be run on worker nodes after common setup. worker_setup_commands: []