This is an automated email from the ASF dual-hosted git repository. sewen pushed a commit to branch release-1.11 in repository https://gitbox.apache.org/repos/asf/flink.git
commit c24185d1c2853d5c56eed6c40e5960d2398474ca Author: Stephan Ewen <[email protected]> AuthorDate: Sun Nov 15 20:54:58 2020 +0100 [hotfix] Adjust japicmp exclusion to permit adding methods to SourceReaderContext and SplitEnumeratorContext interfaces --- flink-core/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flink-core/pom.xml b/flink-core/pom.xml index 86cb960..9fb9448 100644 --- a/flink-core/pom.xml +++ b/flink-core/pom.xml @@ -184,6 +184,10 @@ under the License. <!-- leaked constructor in TypeHint --> <exclude>org.apache.flink.api.common.typeinfo.TypeHint</exclude> <exclude>org.apache.flink.api.java.typeutils.TypeInfoParser</exclude> + + <!-- additions to Source API context interfaces --> + <exclude>org.apache.flink.api.connector.source.SourceReaderContext</exclude> + <exclude>org.apache.flink.api.connector.source.SplitEnumeratorContext</exclude> </excludes> </parameter> </configuration>
