Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version.resteasy from 6.1.0.Final to 6.2.10.Final #783

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<version.slf4j>2.0.16</version.slf4j>
<version.jackson>2.17.2</version.jackson>
<version.jersey>3.1.8</version.jersey>
<version.resteasy>6.1.0.Final</version.resteasy>
<version.resteasy>6.2.10.Final</version.resteasy>
<version.immutables>2.10.1</version.immutables>
<version.apache.compress>1.27.0</version.apache.compress>
<version.unixsocket>0.38.22</version.unixsocket>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public void testCustomHeaders() throws Exception {
builder.header("string", "2");
builder.header("list", Arrays.asList("a", "b", "c"));

server.enqueue(new MockResponse());
server.enqueue(new MockResponse().addHeader("Content-Type", "application/json"));

final DefaultDockerClient dockerClient = builder.build();
dockerClient.info();
Expand Down Expand Up @@ -248,7 +248,7 @@ public void testGroupAdd() throws Exception {
.hostConfig(hostConfig)
.build();

server.enqueue(new MockResponse());
server.enqueue(new MockResponse().addHeader("Content-Type", "application/json"));

dockerClient.createContainer(containerConfig);

Expand All @@ -273,7 +273,7 @@ public void testCapAddAndDrop() throws Exception {
.hostConfig(hostConfig)
.build();

server.enqueue(new MockResponse());
server.enqueue(new MockResponse().addHeader("Content-Type", "application/json"));

dockerClient.createContainer(containerConfig);

Expand Down Expand Up @@ -371,7 +371,7 @@ public void testNanoCpus() throws Exception {
.hostConfig(hostConfig)
.build();

server.enqueue(new MockResponse());
server.enqueue(new MockResponse().addHeader("Content-Type", "application/json"));

dockerClient.createContainer(containerConfig);

Expand Down Expand Up @@ -1065,7 +1065,7 @@ public void testBindBuilderSelinuxLabeling() throws Exception {
.hostConfig(hostConfig)
.build();

server.enqueue(new MockResponse());
server.enqueue(new MockResponse().addHeader("Content-Type", "application/json"));

dockerClient.createContainer(containerConfig);

Expand All @@ -1091,7 +1091,7 @@ public void testBindBuilderSelinuxLabeling() throws Exception {
public void testKillContainer() throws Exception {
final DefaultDockerClient dockerClient = builder.build();

server.enqueue(new MockResponse());
server.enqueue(new MockResponse().addHeader("Content-Type", "application/json"));

final Signal signal = Signal.SIGHUP;
dockerClient.killContainer("1234", signal);
Expand Down Expand Up @@ -1142,7 +1142,7 @@ public void testBufferedRequestEntityProcessing() throws Exception {
.hostConfig(hostConfig)
.build();

server.enqueue(new MockResponse());
server.enqueue(new MockResponse().addHeader("Content-Type", "application/json"));

dockerClient.createContainer(containerConfig);

Expand All @@ -1165,7 +1165,7 @@ public void testChunkedRequestEntityProcessing() throws Exception {
.hostConfig(hostConfig)
.build();

server.enqueue(new MockResponse());
server.enqueue(new MockResponse().addHeader("Content-Type", "application/json"));

dockerClient.createContainer(containerConfig);

Expand Down
Loading