[jira] [Updated] (FLINK-21340) CheckForbiddenMethodsUsage is not run and fails

2022-11-14 Thread Chesnay Schepler (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-21340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Chesnay Schepler updated FLINK-21340:
-
Issue Type: Technical Debt  (was: Bug)

> CheckForbiddenMethodsUsage is not run and fails
> ---
>
> Key: FLINK-21340
> URL: https://issues.apache.org/jira/browse/FLINK-21340
> Project: Flink
>  Issue Type: Technical Debt
>  Components: Tests
>Reporter: Chesnay Schepler
>Assignee: Chesnay Schepler
>Priority: Minor
>  Labels: auto-deprioritized-major, pull-request-available
>
> This seems to be intended as a manual test, that checks that certain methods 
> are not being used.
> It currently fails for 35 instances, 26 of which are for classes from 
> flink-shaded (i.e., out of our control).
> We should either adjust the test it ignore flink-shaded and fix the remaining 
> issues, or remove the test.
> flink-shaded classes could be ignored pretty easily like this:
> {code}
> methodUsages.removeIf(
> memberUsage ->
> memberUsage
> .getDeclaringClass()
> .getPackageName()
> .startsWith("org.apache.flink.shaded"));
> {code}
> These are the remaining failures:
> {code}
> private static void 
> org.apache.flink.api.common.typeutils.TypeSerializerSerializationUtilTest.modifySerialVersionUID(byte[],java.lang.String,long)
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromLongerStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadNonVersionedWithLongPayload()
>  throws java.io.IOException
> public void 
> org.apache.flink.streaming.api.operators.AbstractStreamOperatorTest.testCustomRawKeyedStateSnapshotAndRestore()
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromShorterStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadVersioned()
>  throws java.io.IOException
> private 
> org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter$ChannelStateWriteResult
>  
> org.apache.flink.runtime.state.ChannelPersistenceITCase.write(long,java.util.Map,java.util.Map)
>  throws java.lang.Exception
> public void 
> org.apache.flink.core.memory.HybridOnHeapMemorySegmentTest.testReadOnlyByteBufferPut()
> private static 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandle 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandleTest.create(java.util.Random)
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (FLINK-21340) CheckForbiddenMethodsUsage is not run and fails

2022-11-14 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-21340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated FLINK-21340:
---
Labels: auto-deprioritized-major pull-request-available  (was: 
auto-deprioritized-major)

> CheckForbiddenMethodsUsage is not run and fails
> ---
>
> Key: FLINK-21340
> URL: https://issues.apache.org/jira/browse/FLINK-21340
> Project: Flink
>  Issue Type: Bug
>  Components: Tests
>Reporter: Chesnay Schepler
>Priority: Minor
>  Labels: auto-deprioritized-major, pull-request-available
>
> This seems to be intended as a manual test, that checks that certain methods 
> are not being used.
> It currently fails for 35 instances, 26 of which are for classes from 
> flink-shaded (i.e., out of our control).
> We should either adjust the test it ignore flink-shaded and fix the remaining 
> issues, or remove the test.
> flink-shaded classes could be ignored pretty easily like this:
> {code}
> methodUsages.removeIf(
> memberUsage ->
> memberUsage
> .getDeclaringClass()
> .getPackageName()
> .startsWith("org.apache.flink.shaded"));
> {code}
> These are the remaining failures:
> {code}
> private static void 
> org.apache.flink.api.common.typeutils.TypeSerializerSerializationUtilTest.modifySerialVersionUID(byte[],java.lang.String,long)
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromLongerStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadNonVersionedWithLongPayload()
>  throws java.io.IOException
> public void 
> org.apache.flink.streaming.api.operators.AbstractStreamOperatorTest.testCustomRawKeyedStateSnapshotAndRestore()
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromShorterStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadVersioned()
>  throws java.io.IOException
> private 
> org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter$ChannelStateWriteResult
>  
> org.apache.flink.runtime.state.ChannelPersistenceITCase.write(long,java.util.Map,java.util.Map)
>  throws java.lang.Exception
> public void 
> org.apache.flink.core.memory.HybridOnHeapMemorySegmentTest.testReadOnlyByteBufferPut()
> private static 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandle 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandleTest.create(java.util.Random)
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (FLINK-21340) CheckForbiddenMethodsUsage is not run and fails

2022-09-28 Thread Martijn Visser (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-21340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martijn Visser updated FLINK-21340:
---
Fix Version/s: (was: 1.16.0)

> CheckForbiddenMethodsUsage is not run and fails
> ---
>
> Key: FLINK-21340
> URL: https://issues.apache.org/jira/browse/FLINK-21340
> Project: Flink
>  Issue Type: Bug
>  Components: Tests
>Reporter: Chesnay Schepler
>Priority: Minor
>  Labels: auto-deprioritized-major
>
> This seems to be intended as a manual test, that checks that certain methods 
> are not being used.
> It currently fails for 35 instances, 26 of which are for classes from 
> flink-shaded (i.e., out of our control).
> We should either adjust the test it ignore flink-shaded and fix the remaining 
> issues, or remove the test.
> flink-shaded classes could be ignored pretty easily like this:
> {code}
> methodUsages.removeIf(
> memberUsage ->
> memberUsage
> .getDeclaringClass()
> .getPackageName()
> .startsWith("org.apache.flink.shaded"));
> {code}
> These are the remaining failures:
> {code}
> private static void 
> org.apache.flink.api.common.typeutils.TypeSerializerSerializationUtilTest.modifySerialVersionUID(byte[],java.lang.String,long)
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromLongerStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadNonVersionedWithLongPayload()
>  throws java.io.IOException
> public void 
> org.apache.flink.streaming.api.operators.AbstractStreamOperatorTest.testCustomRawKeyedStateSnapshotAndRestore()
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromShorterStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadVersioned()
>  throws java.io.IOException
> private 
> org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter$ChannelStateWriteResult
>  
> org.apache.flink.runtime.state.ChannelPersistenceITCase.write(long,java.util.Map,java.util.Map)
>  throws java.lang.Exception
> public void 
> org.apache.flink.core.memory.HybridOnHeapMemorySegmentTest.testReadOnlyByteBufferPut()
> private static 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandle 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandleTest.create(java.util.Random)
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (FLINK-21340) CheckForbiddenMethodsUsage is not run and fails

2022-04-13 Thread Yun Gao (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-21340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Yun Gao updated FLINK-21340:

Fix Version/s: 1.16.0

> CheckForbiddenMethodsUsage is not run and fails
> ---
>
> Key: FLINK-21340
> URL: https://issues.apache.org/jira/browse/FLINK-21340
> Project: Flink
>  Issue Type: Bug
>  Components: Tests
>Reporter: Chesnay Schepler
>Priority: Minor
>  Labels: auto-deprioritized-major
> Fix For: 1.15.0, 1.16.0
>
>
> This seems to be intended as a manual test, that checks that certain methods 
> are not being used.
> It currently fails for 35 instances, 26 of which are for classes from 
> flink-shaded (i.e., out of our control).
> We should either adjust the test it ignore flink-shaded and fix the remaining 
> issues, or remove the test.
> flink-shaded classes could be ignored pretty easily like this:
> {code}
> methodUsages.removeIf(
> memberUsage ->
> memberUsage
> .getDeclaringClass()
> .getPackageName()
> .startsWith("org.apache.flink.shaded"));
> {code}
> These are the remaining failures:
> {code}
> private static void 
> org.apache.flink.api.common.typeutils.TypeSerializerSerializationUtilTest.modifySerialVersionUID(byte[],java.lang.String,long)
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromLongerStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadNonVersionedWithLongPayload()
>  throws java.io.IOException
> public void 
> org.apache.flink.streaming.api.operators.AbstractStreamOperatorTest.testCustomRawKeyedStateSnapshotAndRestore()
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromShorterStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadVersioned()
>  throws java.io.IOException
> private 
> org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter$ChannelStateWriteResult
>  
> org.apache.flink.runtime.state.ChannelPersistenceITCase.write(long,java.util.Map,java.util.Map)
>  throws java.lang.Exception
> public void 
> org.apache.flink.core.memory.HybridOnHeapMemorySegmentTest.testReadOnlyByteBufferPut()
> private static 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandle 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandleTest.create(java.util.Random)
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Updated] (FLINK-21340) CheckForbiddenMethodsUsage is not run and fails

2021-09-28 Thread Xintong Song (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-21340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xintong Song updated FLINK-21340:
-
Fix Version/s: (was: 1.14.0)
   1.14.1
   1.15.0

> CheckForbiddenMethodsUsage is not run and fails
> ---
>
> Key: FLINK-21340
> URL: https://issues.apache.org/jira/browse/FLINK-21340
> Project: Flink
>  Issue Type: Bug
>  Components: Tests
>Reporter: Chesnay Schepler
>Priority: Minor
>  Labels: auto-deprioritized-major
> Fix For: 1.15.0, 1.14.1
>
>
> This seems to be intended as a manual test, that checks that certain methods 
> are not being used.
> It currently fails for 35 instances, 26 of which are for classes from 
> flink-shaded (i.e., out of our control).
> We should either adjust the test it ignore flink-shaded and fix the remaining 
> issues, or remove the test.
> flink-shaded classes could be ignored pretty easily like this:
> {code}
> methodUsages.removeIf(
> memberUsage ->
> memberUsage
> .getDeclaringClass()
> .getPackageName()
> .startsWith("org.apache.flink.shaded"));
> {code}
> These are the remaining failures:
> {code}
> private static void 
> org.apache.flink.api.common.typeutils.TypeSerializerSerializationUtilTest.modifySerialVersionUID(byte[],java.lang.String,long)
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromLongerStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadNonVersionedWithLongPayload()
>  throws java.io.IOException
> public void 
> org.apache.flink.streaming.api.operators.AbstractStreamOperatorTest.testCustomRawKeyedStateSnapshotAndRestore()
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromShorterStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadVersioned()
>  throws java.io.IOException
> private 
> org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter$ChannelStateWriteResult
>  
> org.apache.flink.runtime.state.ChannelPersistenceITCase.write(long,java.util.Map,java.util.Map)
>  throws java.lang.Exception
> public void 
> org.apache.flink.core.memory.HybridOnHeapMemorySegmentTest.testReadOnlyByteBufferPut()
> private static 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandle 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandleTest.create(java.util.Random)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (FLINK-21340) CheckForbiddenMethodsUsage is not run and fails

2021-05-19 Thread Flink Jira Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-21340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Flink Jira Bot updated FLINK-21340:
---
  Labels: auto-deprioritized-major  (was: stale-major)
Priority: Minor  (was: Major)

This issue was labeled "stale-major" 7 ago and has not received any updates so 
it is being deprioritized. If this ticket is actually Major, please raise the 
priority and ask a committer to assign you the issue or revive the public 
discussion.


> CheckForbiddenMethodsUsage is not run and fails
> ---
>
> Key: FLINK-21340
> URL: https://issues.apache.org/jira/browse/FLINK-21340
> Project: Flink
>  Issue Type: Bug
>  Components: Tests
>Reporter: Chesnay Schepler
>Priority: Minor
>  Labels: auto-deprioritized-major
> Fix For: 1.14.0
>
>
> This seems to be intended as a manual test, that checks that certain methods 
> are not being used.
> It currently fails for 35 instances, 26 of which are for classes from 
> flink-shaded (i.e., out of our control).
> We should either adjust the test it ignore flink-shaded and fix the remaining 
> issues, or remove the test.
> flink-shaded classes could be ignored pretty easily like this:
> {code}
> methodUsages.removeIf(
> memberUsage ->
> memberUsage
> .getDeclaringClass()
> .getPackageName()
> .startsWith("org.apache.flink.shaded"));
> {code}
> These are the remaining failures:
> {code}
> private static void 
> org.apache.flink.api.common.typeutils.TypeSerializerSerializationUtilTest.modifySerialVersionUID(byte[],java.lang.String,long)
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromLongerStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadNonVersionedWithLongPayload()
>  throws java.io.IOException
> public void 
> org.apache.flink.streaming.api.operators.AbstractStreamOperatorTest.testCustomRawKeyedStateSnapshotAndRestore()
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromShorterStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadVersioned()
>  throws java.io.IOException
> private 
> org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter$ChannelStateWriteResult
>  
> org.apache.flink.runtime.state.ChannelPersistenceITCase.write(long,java.util.Map,java.util.Map)
>  throws java.lang.Exception
> public void 
> org.apache.flink.core.memory.HybridOnHeapMemorySegmentTest.testReadOnlyByteBufferPut()
> private static 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandle 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandleTest.create(java.util.Random)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (FLINK-21340) CheckForbiddenMethodsUsage is not run and fails

2021-04-29 Thread Dawid Wysakowicz (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-21340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dawid Wysakowicz updated FLINK-21340:
-
Fix Version/s: (was: 1.13.0)
   1.14.0

> CheckForbiddenMethodsUsage is not run and fails
> ---
>
> Key: FLINK-21340
> URL: https://issues.apache.org/jira/browse/FLINK-21340
> Project: Flink
>  Issue Type: Bug
>  Components: Tests
>Reporter: Chesnay Schepler
>Priority: Major
>  Labels: stale-major
> Fix For: 1.14.0
>
>
> This seems to be intended as a manual test, that checks that certain methods 
> are not being used.
> It currently fails for 35 instances, 26 of which are for classes from 
> flink-shaded (i.e., out of our control).
> We should either adjust the test it ignore flink-shaded and fix the remaining 
> issues, or remove the test.
> flink-shaded classes could be ignored pretty easily like this:
> {code}
> methodUsages.removeIf(
> memberUsage ->
> memberUsage
> .getDeclaringClass()
> .getPackageName()
> .startsWith("org.apache.flink.shaded"));
> {code}
> These are the remaining failures:
> {code}
> private static void 
> org.apache.flink.api.common.typeutils.TypeSerializerSerializationUtilTest.modifySerialVersionUID(byte[],java.lang.String,long)
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromLongerStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadNonVersionedWithLongPayload()
>  throws java.io.IOException
> public void 
> org.apache.flink.streaming.api.operators.AbstractStreamOperatorTest.testCustomRawKeyedStateSnapshotAndRestore()
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromShorterStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadVersioned()
>  throws java.io.IOException
> private 
> org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter$ChannelStateWriteResult
>  
> org.apache.flink.runtime.state.ChannelPersistenceITCase.write(long,java.util.Map,java.util.Map)
>  throws java.lang.Exception
> public void 
> org.apache.flink.core.memory.HybridOnHeapMemorySegmentTest.testReadOnlyByteBufferPut()
> private static 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandle 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandleTest.create(java.util.Random)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (FLINK-21340) CheckForbiddenMethodsUsage is not run and fails

2021-04-22 Thread Flink Jira Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-21340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Flink Jira Bot updated FLINK-21340:
---
Labels: stale-major  (was: )

> CheckForbiddenMethodsUsage is not run and fails
> ---
>
> Key: FLINK-21340
> URL: https://issues.apache.org/jira/browse/FLINK-21340
> Project: Flink
>  Issue Type: Bug
>  Components: Tests
>Reporter: Chesnay Schepler
>Priority: Major
>  Labels: stale-major
> Fix For: 1.13.0
>
>
> This seems to be intended as a manual test, that checks that certain methods 
> are not being used.
> It currently fails for 35 instances, 26 of which are for classes from 
> flink-shaded (i.e., out of our control).
> We should either adjust the test it ignore flink-shaded and fix the remaining 
> issues, or remove the test.
> flink-shaded classes could be ignored pretty easily like this:
> {code}
> methodUsages.removeIf(
> memberUsage ->
> memberUsage
> .getDeclaringClass()
> .getPackageName()
> .startsWith("org.apache.flink.shaded"));
> {code}
> These are the remaining failures:
> {code}
> private static void 
> org.apache.flink.api.common.typeutils.TypeSerializerSerializationUtilTest.modifySerialVersionUID(byte[],java.lang.String,long)
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromLongerStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadNonVersionedWithLongPayload()
>  throws java.io.IOException
> public void 
> org.apache.flink.streaming.api.operators.AbstractStreamOperatorTest.testCustomRawKeyedStateSnapshotAndRestore()
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromShorterStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadVersioned()
>  throws java.io.IOException
> private 
> org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter$ChannelStateWriteResult
>  
> org.apache.flink.runtime.state.ChannelPersistenceITCase.write(long,java.util.Map,java.util.Map)
>  throws java.lang.Exception
> public void 
> org.apache.flink.core.memory.HybridOnHeapMemorySegmentTest.testReadOnlyByteBufferPut()
> private static 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandle 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandleTest.create(java.util.Random)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (FLINK-21340) CheckForbiddenMethodsUsage is not run and fails

2021-02-16 Thread Chesnay Schepler (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-21340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Chesnay Schepler updated FLINK-21340:
-
Parent: (was: FLINK-21338)
Issue Type: Bug  (was: Sub-task)

> CheckForbiddenMethodsUsage is not run and fails
> ---
>
> Key: FLINK-21340
> URL: https://issues.apache.org/jira/browse/FLINK-21340
> Project: Flink
>  Issue Type: Bug
>  Components: Tests
>Reporter: Chesnay Schepler
>Priority: Major
> Fix For: 1.13.0
>
>
> This seems to be intended as a manual test, that checks that certain methods 
> are not being used.
> It currently fails for 35 instances, 26 of which are for classes from 
> flink-shaded (i.e., out of our control).
> We should either adjust the test it ignore flink-shaded and fix the remaining 
> issues, or remove the test.
> flink-shaded classes could be ignored pretty easily like this:
> {code}
> methodUsages.removeIf(
> memberUsage ->
> memberUsage
> .getDeclaringClass()
> .getPackageName()
> .startsWith("org.apache.flink.shaded"));
> {code}
> These are the remaining failures:
> {code}
> private static void 
> org.apache.flink.api.common.typeutils.TypeSerializerSerializationUtilTest.modifySerialVersionUID(byte[],java.lang.String,long)
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromLongerStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadNonVersionedWithLongPayload()
>  throws java.io.IOException
> public void 
> org.apache.flink.streaming.api.operators.AbstractStreamOperatorTest.testCustomRawKeyedStateSnapshotAndRestore()
>  throws java.lang.Exception
> public void 
> org.apache.flink.util.IOUtilsTest.testTryReadFullyFromShorterStream() throws 
> java.io.IOException
> public void 
> org.apache.flink.core.io.PostVersionedIOReadableWritableTest.testReadVersioned()
>  throws java.io.IOException
> private 
> org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter$ChannelStateWriteResult
>  
> org.apache.flink.runtime.state.ChannelPersistenceITCase.write(long,java.util.Map,java.util.Map)
>  throws java.lang.Exception
> public void 
> org.apache.flink.core.memory.HybridOnHeapMemorySegmentTest.testReadOnlyByteBufferPut()
> private static 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandle 
> org.apache.flink.runtime.state.IncrementalRemoteKeyedStateHandleTest.create(java.util.Random)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)