Skip to content

Commit

Permalink
Merge branch 'master' into graal-substitute
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-sheng authored Sep 26, 2023
2 parents 66dd3f8 + 2b7e5ee commit 17ca887
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* [Breaking Change] Elasticsearch storage merge all management data indices into one index `management`,
including `ui_template,ui_menu,continuous_profiling_policy`.
* Add a release mechanism for alarm windows when it is expired in case of OOM.
* Apply MQE on K8s layer UI-templates
* Fix Zipkin trace receiver response: make the HTTP status code from `200` to `202`.

#### UI

Expand All @@ -21,6 +21,7 @@
* Fix the display height of the link tree structure.
* Replace the name by shortName on service widget.
* Refactor: update pagination style. No visualization style change.
* Apply MQE on K8s layer UI-templates

#### Documentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ HttpResponse doCollectSpans(final SpanBytesDecoder decoder,
try (final HttpData httpData = request.content()) {
final List<Span> spanList = decoder.decodeList(httpData.byteBuf().nioBuffer());
spanForward.send(spanList);
return HttpResponse.of(HttpStatus.OK);
return HttpResponse.of(HttpStatus.ACCEPTED);
}
}));
response.whenComplete().handle((unused, throwable) -> {
Expand Down

0 comments on commit 17ca887

Please sign in to comment.