Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-11-14 18:11:29 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-11-14 18:11:29 +0300
commit2d80ade70258fa78e9ada2e8b3055129a69654f3 (patch)
treea23e474b4cc5184db445a6121f9eb75c0653fe5f /scripts/utils.sh
parent61a82b8ec062d6f122dadd38783c7754cef7ce2b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts/utils.sh')
-rw-r--r--scripts/utils.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/utils.sh b/scripts/utils.sh
index dae65ac8156..378f492a8bf 100644
--- a/scripts/utils.sh
+++ b/scripts/utils.sh
@@ -5,7 +5,7 @@ function retry() {
for i in 2 1; do
sleep 3s
- echo "Retrying $i..."
+ echo "[$(date '+%H:%M:%S')] Retrying $i..."
if eval "$@"; then
return 0
fi