Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fa6dd0fa95 | |||
| ce68165eef |
+1
-1
@@ -1 +1 @@
|
||||
1.0.7
|
||||
1.0.9
|
||||
|
||||
@@ -19,8 +19,17 @@ is_container_running() {
|
||||
|
||||
|
||||
if [ -z ${date_to_load} ] ; then
|
||||
echo "Yesterday data has priority. Running historical container will be killed"
|
||||
docker kill ${ContainerName}
|
||||
echo "Yesterday data has priority. Running historical container will be stopped"
|
||||
Cmd="docker stop ${ContainerName}"
|
||||
echo ${Cmd} && eval ${Cmd}
|
||||
|
||||
Cmd="docker ps"
|
||||
echo ${Cmd} && eval ${Cmd}
|
||||
|
||||
if is_container_running "$ContainerName"; then
|
||||
echo "Container ${ContainerName} is still running."
|
||||
exit 3
|
||||
fi
|
||||
else
|
||||
echo "Historical run ${date_to_load}"
|
||||
if is_container_running "$ContainerName"; then
|
||||
@@ -74,7 +83,7 @@ if [ "$?" != "0" ] ; then
|
||||
fi
|
||||
|
||||
# truncate to avoid false positive
|
||||
date_to_load=$(echo "${date_to_load} | xargs")
|
||||
date_to_load=$(echo "${date_to_load}" | xargs)
|
||||
if [ -n "${date_to_load}" ]; then
|
||||
echo "Saving date_to_load to ${LastDayFile}"
|
||||
echo ${date_to_load} > ${LastDayFile}
|
||||
|
||||
Reference in New Issue
Block a user