File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 2
2
#
3
3
#
4
4
5
- # Bootstrap EC2 instance (Ubuntu 18.04 ) for soak client use
5
+ # Bootstrap EC2 instance (Ubuntu) for soak client use
6
6
#
7
7
# Usage:
8
8
# $0 <python-branch/tag> <librdkafka-branch/tag>
9
9
10
10
set -e
11
11
12
12
if [[ $# != 2 ]]; then
13
- echo " Usage: $0 <python-client- branch/tag> <librdkafka -branch/tag>"
13
+ echo " Usage: $0 <librdkafka- branch/tag> <python-client -branch/tag>"
14
14
exit 1
15
15
fi
16
16
17
- python_branch =$1
18
- librdkafka_branch =$2
17
+ librdkafka_branch =$1
18
+ python_branch =$2
19
19
otel_collector_version=0.130.0
20
20
otel_collector_package_url=" https://github.com/open-telemetry/" \
21
21
" opentelemetry-collector-releases/releases/download/" \
Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ set -eu
14
14
15
15
16
16
echo " Building and installing librdkafka $librdkafka_version "
17
+ if [[ ! -d librdkafka ]]; then
18
+ git clone https://github.com/confluentinc/librdkafka.git
19
+ fi
17
20
pushd librdkafka
18
21
sudo make uninstall
19
22
git fetch --tags
You can’t perform that action at this time.
0 commit comments