Skip to content

Commit c65cb74

Browse files
Merge branch 'main' into Add-otel-log-support-to-payment-service
2 parents 9165c3a + e18bb82 commit c65cb74

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/label-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: "Add Label: docs-update-required"
3434
if: steps.file_changes.outputs.docsUpdateRequired == 'true'
35-
uses: actions/github-script@v3
35+
uses: actions/github-script@v7
3636
with:
3737
github-token: ${{secrets.GITHUB_TOKEN}}
3838
script: |
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: "Add Label: helm-update-required"
4848
if: steps.file_changes.outputs.helmUpdateRequired == 'true'
49-
uses: actions/github-script@v3
49+
uses: actions/github-script@v7
5050
with:
5151
github-token: ${{secrets.GITHUB_TOKEN}}
5252
script: |

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,21 +79,21 @@ Monday at 8:30 AM PST and anyone is welcome.
7979
([@open-telemetry/demo-maintainers](https://github.com/orgs/open-telemetry/teams/demo-maintainers)):
8080

8181
- [Austin Parker](https://github.com/austinlparker), Honeycomb
82-
- [Carter Socha](https://github.com/cartersocha), Lightstep
8382
- [Juliano Costa](https://github.com/julianocosta89), Datadog
83+
- [Mikko Viitanen](https://github.com/mviitane), Dynatrace
8484
- [Pierre Tessier](https://github.com/puckpuck), Honeycomb
8585

8686
[Approvers](https://github.com/open-telemetry/community/blob/main/community-membership.md#approver)
8787
([@open-telemetry/demo-approvers](https://github.com/orgs/open-telemetry/teams/demo-approvers)):
8888

8989
- [Cedric Ziel](https://github.com/cedricziel) Grafana Labs
90-
- [Mikko Viitanen](https://github.com/mviitane), Dynatrace
9190
- [Penghan Wang](https://github.com/wph95), AppDynamics
9291
- [Reiley Yang](https://github.com/reyang), Microsoft
9392
- [Ziqi Zhao](https://github.com/fatsheep9146), Alibaba
9493

9594
Emeritus:
9695

96+
- [Carter Socha](https://github.com/cartersocha)
9797
- [Michael Maxwell](https://github.com/mic-max)
9898
- [Morgan McLean](https://github.com/mtwo)
9999

src/adservice/src/main/java/oteldemo/AdService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public void getAds(AdRequest req, StreamObserver<AdResponse> responseObserver) {
182182
adRequestTypeKey, adRequestType.name(), adResponseTypeKey, adResponseType.name()));
183183

184184
if (getFeatureFlagEnabled(ADSERVICE_FAILURE)) {
185-
throw new StatusRuntimeException(Status.RESOURCE_EXHAUSTED);
185+
throw new StatusRuntimeException(Status.UNAVAILABLE);
186186
}
187187

188188
if (getFeatureFlagEnabled(ADSERVICE_MANUAL_GC_FEATURE_FLAG)) {

0 commit comments

Comments
 (0)