Skip to content

Commit

Permalink
[FLINK-12775][build] Bump flink-shaded version to 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aloyszhang authored and zentol committed Jun 7, 2019
1 parent 1c3e7a8 commit eaaf4fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
import javax.annotation.Nullable;

import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
Expand Down Expand Up @@ -122,7 +123,7 @@ protected void respondAsLeader(ChannelHandlerContext ctx, RoutedRequest routedRe
}
} else {
try {
ByteBufInputStream in = new ByteBufInputStream(msgContent);
InputStream in = new ByteBufInputStream(msgContent);
request = MAPPER.readValue(in, untypedResponseMessageHeaders.getRequestClass());
} catch (JsonParseException | JsonMappingException je) {
throw new RestHandlerException(
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ under the License.
<flink.forkCountTestPackage>${flink.forkCount}</flink.forkCountTestPackage>
<flink.reuseForks>true</flink.reuseForks>
<log4j.configuration>log4j-test.properties</log4j.configuration>
<flink.shaded.version>6.0</flink.shaded.version>
<flink.shaded.version>7.0</flink.shaded.version>
<guava.version>18.0</guava.version>
<akka.version>2.5.21</akka.version>
<java.version>1.8</java.version>
Expand All @@ -121,7 +121,7 @@ under the License.
<chill.version>0.7.6</chill.version>
<zookeeper.version>3.4.10</zookeeper.version>
<curator.version>2.12.0</curator.version>
<jackson.version>2.7.9</jackson.version>
<jackson.version>2.9.8</jackson.version>
<metrics.version>3.1.5</metrics.version>
<prometheus.version>0.3.0</prometheus.version>
<avro.version>1.8.2</avro.version>
Expand Down

0 comments on commit eaaf4fb

Please sign in to comment.