Skip to content

Commit c777738

Browse files
authored
Revert "add opentelemery helper scripts" (#121)
1 parent 8bd8fca commit c777738

9 files changed

+5
-143
lines changed

tests/test_rapids-get-telemetry-trace-id.py

Lines changed: 0 additions & 49 deletions
This file was deleted.

tools/rapids-conda-retry

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ condaCmd=${RAPIDS_CONDA_EXE:=conda}
6767
# needToRetry: 1 if the command should be retried, 0 if it should not be
6868
function runConda {
6969
# shellcheck disable=SC2086
70-
rapids-otel-wrap ${condaCmd} ${args} 2>&1| tee "${outfile}"
70+
${condaCmd} ${args} 2>&1| tee "${outfile}"
7171
exitcode=$?
7272
needToRetry=0
7373
needToClean=0

tools/rapids-get-pr-conda-artifact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ if [[ -z "${commit}" ]]; then
3333
commit=$(git ls-remote https://github.com/rapidsai/"${repo}".git refs/heads/pull-request/"${pr}" | cut -c1-7)
3434
fi
3535

36-
rapids-otel-wrap rapids-get-artifact "ci/${repo}/pull-request/${pr}/${commit}/${artifact_name}"
36+
rapids-get-artifact "ci/${repo}/pull-request/${pr}/${commit}/${artifact_name}"

tools/rapids-get-telemetry-trace-id

Lines changed: 0 additions & 6 deletions
This file was deleted.

tools/rapids-get-telemetry-traceparent

Lines changed: 0 additions & 30 deletions
This file was deleted.

tools/rapids-mamba-retry

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ for arg in "$@"; do
4646
fi
4747
done
4848

49-
rapids-otel-wrap rapids-conda-retry "${args[@]}"
49+
rapids-conda-retry "$@"

tools/rapids-otel-wrap

Lines changed: 0 additions & 53 deletions
This file was deleted.

tools/rapids-upload-conda-to-s3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ pkg_name="$(rapids-package-name "$pkg_type")"
3030
# Where conda build artifacts are output
3131
path_to_tar_up="${RAPIDS_CONDA_BLD_OUTPUT_DIR}"
3232

33-
rapids-otel-wrap rapids-upload-to-s3 "${pkg_name}" "${path_to_tar_up}"
33+
rapids-upload-to-s3 "${pkg_name}" "${path_to_tar_up}"

tools/rapids-upload-wheels-to-s3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ if [ "${CI:-false}" = "false" ]; then
2020
exit 0
2121
fi
2222

23-
rapids-otel-wrap rapids-upload-to-s3 "${pkg_name}" "$@"
23+
rapids-upload-to-s3 "${pkg_name}" "$@"

0 commit comments

Comments
 (0)