tsreaper opened a new pull request, #92:
URL: https://github.com/apache/flink-table-store/pull/92

   This is caused by FLINK-27172. Currently table store excludes file connector 
dependencies shading as follows:
   ```
   <exclude>org.apache.flink.connector.base.*</exclude>
   <exclude>org.apache.flink.connector.file.*</exclude>
   ```
   
   However this only excludes classes in org.apache.flink.connector.base and 
org.apache.flink.connector.file packages and does not exclude classes in their 
sub-packages. The correct excluding pattern should be:
   ```
   <exclude>org.apache.flink.connector.base.**</exclude>
   <exclude>org.apache.flink.connector.file.**</exclude>
   ```
   
   This change will also be checked by e2e tests in the near future.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to