Skip to content

Commit

Permalink
remove rapids-otel-wrap for simplicity (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
msarahan authored Feb 4, 2025
1 parent 824276a commit 30a8ac5
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 286 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/prs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,3 @@ jobs:
run: |
pip install pytest
pytest tests
- name: Run bash tests
run: |
bash tests/test_rapids-otel-wrap.sh
66 changes: 0 additions & 66 deletions tests/test_rapids-get-telemetry-trace-id.py

This file was deleted.

54 changes: 0 additions & 54 deletions tests/test_rapids-otel-wrap.py

This file was deleted.

37 changes: 0 additions & 37 deletions tests/test_rapids-otel-wrap.sh

This file was deleted.

4 changes: 1 addition & 3 deletions tools/rapids-conda-retry
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,7 @@ condaCmd=${RAPIDS_CONDA_EXE:=conda}
# needToRetry: 1 if the command should be retried, 0 if it should not be
function runConda {
# shellcheck disable=SC2086
# RAPIDS_OTEL_WRAPPER is optionally passed in as an env var. It is
# used to instrument conda-build or mambabuild for finer-grained spans.
${RAPIDS_OTEL_WRAPPER:-} ${condaCmd} ${args} 2>&1| tee "${outfile}"
${condaCmd} ${args} 2>&1| tee "${outfile}"
exitcode=$?
needToRetry=0
needToClean=0
Expand Down
11 changes: 0 additions & 11 deletions tools/rapids-get-telemetry-trace-id

This file was deleted.

38 changes: 0 additions & 38 deletions tools/rapids-get-telemetry-traceparent

This file was deleted.

72 changes: 0 additions & 72 deletions tools/rapids-otel-wrap

This file was deleted.

3 changes: 1 addition & 2 deletions tools/rapids-pip-retry
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ pipCmd=${RAPIDS_PIP_EXE:=python -m pip}
# needToRetry: 1 if the command should be retried, 0 if it should not be
function runPip {
# shellcheck disable=SC2086
# RAPIDS_OTEL_WRAPPER is optionally passed in as an env var.
${RAPIDS_OTEL_WRAPPER:-} ${pipCmd} ${args} 2>&1 | tee "${outfile}"
${pipCmd} ${args} 2>&1 | tee "${outfile}"
exitcode=$?
needToRetry=0
needToClean=0
Expand Down

0 comments on commit 30a8ac5

Please sign in to comment.