jovezhong commented on PR #7385:
URL: https://github.com/apache/seatunnel/pull/7385#issuecomment-2367288580
Hi @Hisoka-X ,
> Looks like you change
org.apache.seatunnel.connectors.seatunnel.timeplus.sink.TimeplusSink to
org.apache.seatunnel.connectors.seatunnel.timeplus.sink.client.TimeplusSink.
Please clean your local cache.
Since day 1, the classname is
`org.apache.seatunnel.connectors.seatunnel.timeplus.sink.client.TimeplusSink`.
May I know how `testAllConnectorImplementFactoryWithUpToDateMethod` determine
the class name?
It seems that **SinkFactory has to be the same package as the **Sink
```java
Class<? extends SeaTunnelSink> sinkClass =
(Class<? extends SeaTunnelSink>)
Class.forName(
factory.getClass()
.getName()
.replace(
factoryName,
factoryName.replace("Factory", "")));
```
--
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]