Skip to content

Commit

Permalink
Merge branch '1.3.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Jun 24, 2020
2 parents 3dc3eb5 + 5ae77a1 commit 9cedbb8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ jobs:
run: |
./gradlew pTML
./gradlew check --no-daemon --parallel --continue
- name: Publish Test Report
if: failure()
uses: scacap/action-surefire-report@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Publish to JFrog OSS
if: success() && github.event_name == 'push' && matrix.java == '8' && github.ref == 'refs/heads/master'
env:
Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,9 @@ subprojects { Project subproject ->
System.out.print(".")
System.out.flush()
}

reports {
junitXml.enabled = true
}
systemProperty "micronaut.cloud.platform", "OTHER"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@ public class NettyMutableHttpResponse<B> implements MutableHttpResponse<B>, Nett
final NettyHttpHeaders headers;
private final ConversionService conversionService;
private Object body;
private final Map<Class, Optional> convertedBodies = new LinkedHashMap<>(1);
private final Map<Class, Optional> convertedBodies = Collections.synchronizedMap(new LinkedHashMap<>(1));
private MutableConvertibleValues<Object> attributes;

private ServerCookieEncoder serverCookieEncoder = DEFAULT_SERVER_COOKIE_ENCODER;

/**
Expand Down

0 comments on commit 9cedbb8

Please sign in to comment.