Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e97fc9e

Browse files
authoredMay 15, 2024··
Merge branch 'main' into cijothomas/release-may-2024
2 parents 9e96cff + 0cc7228 commit e97fc9e

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed
 

‎.github/workflows/ci.yml

+10
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040
- name: "Set rustup profile"
4141
run: rustup set profile minimal
4242
- uses: arduino/setup-protoc@v3
43+
with:
44+
repo-token: ${{ secrets.GITHUB_TOKEN }}
4345
- name: Test
4446
run: bash ./scripts/test.sh
4547
lint:
@@ -52,6 +54,8 @@ jobs:
5254
with:
5355
components: rustfmt
5456
- uses: arduino/setup-protoc@v3
57+
with:
58+
repo-token: ${{ secrets.GITHUB_TOKEN }}
5559
- uses: actions-rs/cargo@v1
5660
with:
5761
command: fmt
@@ -88,6 +92,8 @@ jobs:
8892
with:
8993
components: rustfmt
9094
- uses: arduino/setup-protoc@v3
95+
with:
96+
repo-token: ${{ secrets.GITHUB_TOKEN }}
9197
- name: Build
9298
run: |
9399
cd ${{ matrix.example }}
@@ -126,6 +132,8 @@ jobs:
126132
with:
127133
components: rustfmt
128134
- uses: arduino/setup-protoc@v3
135+
with:
136+
repo-token: ${{ secrets.GITHUB_TOKEN }}
129137
- name: doc
130138
run: cargo doc --no-deps --all-features
131139
env:
@@ -144,6 +152,8 @@ jobs:
144152
toolchain: stable
145153
components: rustfmt,llvm-tools-preview
146154
- uses: arduino/setup-protoc@v3
155+
with:
156+
repo-token: ${{ secrets.GITHUB_TOKEN }}
147157
- name: cargo install cargo-llvm-cov
148158
uses: taiki-e/install-action@cargo-llvm-cov
149159
- name: cargo generate-lockfile

‎opentelemetry-otlp/CHANGELOG.md

-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313

1414
### Added
1515

16-
- Aded `http/json` support for all signals ([#1585])
17-
18-
[#1585]: https://github.com/open-telemetry/opentelemetry-rust/pull/1585
19-
2016
- Added `DeltaTemporalitySelector` ([#1568])
2117
- Add `webkpi-roots` features to `reqwest` and `tonic` backends
2218

‎opentelemetry-otlp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ tls-webkpi-roots = ["tls", "tonic/tls-webpki-roots"]
7272

7373
# http binary
7474
http-proto = ["prost", "opentelemetry-http", "opentelemetry-proto/gen-tonic-messages", "http", "trace", "metrics"]
75-
# http json
75+
# http json This does not work today due to known issue. See https://github.com/open-telemetry/opentelemetry-rust/issues/1763.
7676
http-json = ["serde_json", "prost", "opentelemetry-http", "opentelemetry-proto/gen-tonic-messages", "opentelemetry-proto/with-serde", "http", "trace", "metrics"]
7777
reqwest-blocking-client = ["reqwest/blocking", "opentelemetry-http/reqwest"]
7878
reqwest-client = ["reqwest", "opentelemetry-http/reqwest"]

‎opentelemetry-otlp/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@
102102
//! The following feature flags offer additional configurations on http:
103103
//!
104104
//! * `http-proto`: Use http as transport layer, protobuf as body format.
105-
//! * `http-json`: Use http as transport layer, JSON as body format.
106105
//! * `reqwest-blocking-client`: Use reqwest blocking http client.
107106
//! * `reqwest-client`: Use reqwest http client.
108107
//! * `reqwest-rustls`: Use reqwest with TLS with system trust roots via `rustls-native-certs` crate.

0 commit comments

Comments
 (0)
Please sign in to comment.