-
Notifications
You must be signed in to change notification settings - Fork 2.7k
[connector/servicegraph] Broken test: TestConnectorConsume/incomplete_traces_with_virtual_server_span #34792
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
/label os:windows |
I've filed #34796 to fix the bug that caused no label to be added here. |
Although it is another timing issue when running on Windows it fails consistently on my box, changed the title to reflect that. I will see if I can get a fix quickly. |
MovieStoreGuy
pushed a commit
that referenced
this issue
Aug 22, 2024
**Description:** <Describe what has changed.> <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> [Example failure](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/10494185404/job/29069879053), because of [this comment](#34792 (comment)). The failure is happening because the match fails when the label has a trailing newline. Local test without fix: ``` $ export LABEL="os:windows " $ if [[ -v COMMON_LABELS["${LABEL}"] ]]; then echo "Hello"; fi $ ``` Local test with fix: ``` $ export LABEL="os:windows " $ LABEL=$(echo "${LABEL}" | tr -d '\n') $ if [[ -v COMMON_LABELS["${LABEL}"] ]]; then echo "Hello"; fi Hello ```
dmitryax
pushed a commit
that referenced
this issue
Aug 22, 2024
…r_span failures on Windows (#34798) **Description:** The failure is due to similar case as explained at #32715 (comment) This is a quick fix that just adds a delay to ensure that the test is passing on Windows. **Link to tracking Issue:** Fixes #34792 **Testing:** Local Windows test run. **Documentation:** N/A
f7o
pushed a commit
to f7o/opentelemetry-collector-contrib
that referenced
this issue
Sep 12, 2024
…etry#34796) **Description:** <Describe what has changed.> <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> [Example failure](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/10494185404/job/29069879053), because of [this comment](open-telemetry#34792 (comment)). The failure is happening because the match fails when the label has a trailing newline. Local test without fix: ``` $ export LABEL="os:windows " $ if [[ -v COMMON_LABELS["${LABEL}"] ]]; then echo "Hello"; fi $ ``` Local test with fix: ``` $ export LABEL="os:windows " $ LABEL=$(echo "${LABEL}" | tr -d '\n') $ if [[ -v COMMON_LABELS["${LABEL}"] ]]; then echo "Hello"; fi Hello ```
f7o
pushed a commit
to f7o/opentelemetry-collector-contrib
that referenced
this issue
Sep 12, 2024
…r_span failures on Windows (open-telemetry#34798) **Description:** The failure is due to similar case as explained at open-telemetry#32715 (comment) This is a quick fix that just adds a delay to ensure that the test is passing on Windows. **Link to tracking Issue:** Fixes open-telemetry#34792 **Testing:** Local Windows test run. **Documentation:** N/A
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Component(s)
connector/servicegraph
Describe the issue you're reporting
https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/10493207856/job/29066610265?pr=34791#step:6:377
The text was updated successfully, but these errors were encountered: