From 8d76b7aeda1c66a1ac992c667d40cbb7a661bdf7 Mon Sep 17 00:00:00 2001 From: Gage Hugo Date: Sun, 28 Feb 2021 20:23:00 -0600 Subject: [PATCH] Remove -x from 34_deploy_worker_node.sh The deploy_worker_node script waits for the nodes to come up and spams the logs as it runs. This change removes -x from the script in order to remove a lot of unnecessary stdout since the script already contains several echo statements to indicate progress. Change-Id: I4c7465b6aa3538ea171f61387035e79c7d852088 --- tools/deployment/34_deploy_worker_node.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/deployment/34_deploy_worker_node.sh b/tools/deployment/34_deploy_worker_node.sh index 594f71f22..5221ab75a 100755 --- a/tools/deployment/34_deploy_worker_node.sh +++ b/tools/deployment/34_deploy_worker_node.sh @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -set -xe +set -e #Default wait timeout is 3600 seconds export TIMEOUT=${TIMEOUT:-3600}