From fbb1de9a78c7d9952479cb7d5ac035dabb44b6fb Mon Sep 17 00:00:00 2001 From: wenxindongwork <161090399+wenxindongwork@users.noreply.github.com> Date: Mon, 25 Nov 2024 11:28:24 -0800 Subject: [PATCH] Oncall test fix (#486) * change cluster change cluster * typo * The -f flag makes rm not error if the file doesn't exist. --------- Co-authored-by: chandrasekhard2 <98771505+chandrasekhard2@users.noreply.github.com> --- dags/solutions_team/configs/tensorflow/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dags/solutions_team/configs/tensorflow/common.py b/dags/solutions_team/configs/tensorflow/common.py index 3972e227..beee93d5 100644 --- a/dags/solutions_team/configs/tensorflow/common.py +++ b/dags/solutions_team/configs/tensorflow/common.py @@ -19,7 +19,7 @@ CMD_PRINT_TF_VERSION = "python3 -c \"import tensorflow; print('Running using TensorFlow Version: ' + tensorflow.__version__)\"" -CMD_REMOVE_LIBTPU_LOCKFILE = "sudo rm /tmp/libtpu_lockfile" +CMD_REMOVE_LIBTPU_LOCKFILE = "sudo rm -f /tmp/libtpu_lockfile" CMD_INSTALL_KERAS_NIGHTLY = ( "pip install --upgrade --no-deps --force-reinstall tf-keras-nightly" )