Skip to content

Commit

Permalink
[FLINK-21152][build] Bump flink-shaded to 13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Apr 8, 2021
1 parent 9378f99 commit 6f73500
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ protected FlinkDeserializationContext(
this.objectMapper = src.objectMapper;
}

protected FlinkDeserializationContext(
FlinkDeserializationContext src, DeserializationConfig config) {
super(src, config);
this.serdeCtx = src.serdeCtx;
this.objectMapper = src.objectMapper;
}

@Override
public DefaultDeserializationContext with(DeserializerFactory factory) {
return new FlinkDeserializationContext(this, factory);
Expand All @@ -67,6 +74,11 @@ public DefaultDeserializationContext createInstance(
return new FlinkDeserializationContext(this, config, p, values);
}

@Override
public DefaultDeserializationContext createDummyInstance(DeserializationConfig config) {
return new FlinkDeserializationContext(this, config);
}

public SerdeContext getSerdeContext() {
return serdeCtx;
}
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.
to avoid process kills due to container limits on TravisCI -->
<flink.forkCountTestPackage>${flink.forkCount}</flink.forkCountTestPackage>
<flink.reuseForks>true</flink.reuseForks>
<flink.shaded.version>12.0</flink.shaded.version>
<flink.shaded.version>13.0</flink.shaded.version>
<guava.version>18.0</guava.version>
<akka.version>2.5.21</akka.version>
<target.java.version>1.8</target.java.version>
Expand All @@ -122,7 +122,7 @@ under the License.
<zookeeper.version>3.4.14</zookeeper.version>
<!-- Only the curator2 TestingServer works with ZK 3.4 -->
<curator.version>2.12.0</curator.version>
<jackson.version>2.10.1</jackson.version>
<jackson.version>2.12.1</jackson.version>
<prometheus.version>0.8.1</prometheus.version>
<avro.version>1.10.0</avro.version>
<javax.activation.api.version>1.2.0</javax.activation.api.version>
Expand Down

0 comments on commit 6f73500

Please sign in to comment.