aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/replay_batch.sh
diff options
context:
space:
mode:
authorZipeng WU <zipeng.wu@sonarsource.com>2023-02-27 14:16:22 +0100
committersonartech <sonartech@sonarsource.com>2023-02-27 20:03:16 +0000
commit608abfb861873ca9e5e5fd5191191be2347652be (patch)
tree7afa19f9347616d5fe13a7f22ff0ce91c241ad18 /scripts/replay_batch.sh
parenta8dc47ae3cf1514739f969023285bd9270e3de30 (diff)
downloadsonarqube-608abfb861873ca9e5e5fd5191191be2347652be.tar.gz
sonarqube-608abfb861873ca9e5e5fd5191191be2347652be.zip
[NO-JIRA] Remove obsolete generate_batch_reports.sh and replay_batch.sh
Diffstat (limited to 'scripts/replay_batch.sh')
-rwxr-xr-xscripts/replay_batch.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/replay_batch.sh b/scripts/replay_batch.sh
deleted file mode 100755
index 3b6ae873b9e..00000000000
--- a/scripts/replay_batch.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env bash
-
-set -euo pipefail
-
-DUMP_DIR="/tmp/batch_dumps"
-SQ_ROOT_URL="http://localhost:9000"
-
-cd $DUMP_DIR
-for file in *.zip; do
- base=${file%.zip}
- url=$(cat ${base}.txt)
- echo "base=$base, url=$url"
-
- curl -u admin:admin -F report=@$DUMP_DIR/${base}.zip ${SQ_ROOT_URL}${url}
-done