Skip to content

Commit

Permalink
fix: revert "reapply ByteBuf optimization"
Browse files Browse the repository at this point in the history
This reverts commit 44f1a3d.
  • Loading branch information
a-cordier committed Sep 7, 2023
1 parent d115b67 commit 1939e53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 2.1
setup: true

orbs:
gravitee: gravitee-io/gravitee@2.1
gravitee: gravitee-io/gravitee@4.1.0

# our single workflow, that triggers the setup job defined above, filters on tag and branches are needed otherwise
# some workflow and job will not be triggered for tags (default CircleCI behavior)
Expand All @@ -22,7 +22,7 @@ workflows:
setup_release:
when:
matches:
pattern: "^[0-9]+\\.[0-9]+\\.[0-9]+$"
pattern: "/^[0-9]+\\.[0-9]+\\.[0-9]+(-(alpha|beta|rc)\\.[0-9]+)?$/"
value: << pipeline.git.tag >>
jobs:
- gravitee/setup_plugin-release-config:
Expand All @@ -32,4 +32,4 @@ workflows:
- /.*/
tags:
only:
- /^[0-9]+\.[0-9]+\.[0-9]+$/
- /^[0-9]+\.[0-9]+\.[0-9]+(-(alpha|beta|rc)\.[0-9]+)?$/
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ protected T handleUpstreamResponse(final AsyncResult<HttpClientResponse> clientR
response.cancelHandler(tracker);

// Copy body content
clientResponse.handler(event -> response.bodyHandler().handle(Buffer.buffer(event)));
clientResponse.handler(event -> response.bodyHandler().handle(Buffer.buffer(event.getBytes())));

// Signal end of the response
clientResponse.endHandler(event -> {
Expand Down

0 comments on commit 1939e53

Please sign in to comment.