From 4f9f7f86cdad19f693faddcd2a7f646250c0455e Mon Sep 17 00:00:00 2001
From: Thomas Kluyver <thomas@kluyver.me.uk>
Date: Mon, 21 Sep 2020 11:55:04 +0100
Subject: [PATCH] Rename script parameter for clarity

---
 bin/slurm_calibrate.sh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/bin/slurm_calibrate.sh b/bin/slurm_calibrate.sh
index 9f5446343..0e22b20ca 100755
--- a/bin/slurm_calibrate.sh
+++ b/bin/slurm_calibrate.sh
@@ -3,7 +3,7 @@
 # set paths to use
 nb_path=$1
 python_path=$2
-uuid=$3
+ipcluster_profile=$3
 notebook=$4
 detector=$5
 caltype=$6
@@ -14,7 +14,7 @@ cluster_cores=$9
 echo "Running with the following parameters:"
 echo "Notebook path: $nb_path"
 echo "Python path: $python_path"
-echo "IP-Cluster profile: $uuid"
+echo "IP-Cluster profile: $ipcluster_profile"
 echo "notebook: $notebook"
 echo "detector: $detector"
 echo "caltype: $caltype"
@@ -39,8 +39,8 @@ export MPLBACKEND=AGG
 # start an ip cluster if requested
 if [ "${uuid}" != "NO_CLUSTER" ]
 then
-    ${python_path} -m IPython profile create ${uuid} --parallel
-    ${python_path} -m ipyparallel.cluster start --n=${cluster_cores} --profile=${uuid} --daemon &
+    ${python_path} -m IPython profile create ${ipcluster_profile} --parallel
+    ${python_path} -m ipyparallel.cluster start --n=${cluster_cores} --profile=${ipcluster_profile} --daemon &
     sleep 15
 fi
 
@@ -51,8 +51,8 @@ ${python_path} -m nbconvert --to rst --ExecutePreprocessor.timeout=36000 --Execu
 # stop the cluster if requested
 if [ "${uuid}" != "NO_CLUSTER" ]
 then
-    ${python_path} -m ipyparallel.cluster stop --profile=${uuid}
-    profile_path=$(${python_path} -m IPython locate profile ${uuid})
+    ${python_path} -m ipyparallel.cluster stop --profile=${ipcluster_profile}
+    profile_path=$(${python_path} -m IPython locate profile ${ipcluster_profile})
     echo "Removing cluster profile from: $profile_path"
     rm -rf $profile_path
 fi
-- 
GitLab