This is an automated email from the ASF dual-hosted git repository.
yx9o pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new abf6858f86b Add @SingletonSPI on PipelineChannelCreator (#32584)
abf6858f86b is described below
commit abf6858f86b9a0900b0f8514e8a2582e0bcf897c
Author: Liang Zhang <[email protected]>
AuthorDate: Sun Aug 18 16:56:27 2024 +0800
Add @SingletonSPI on PipelineChannelCreator (#32584)
---
.../data/pipeline/core/channel/PipelineChannelCreator.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/core/channel/PipelineChannelCreator.java
b/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/core/channel/PipelineChannelCreator.java
index 61f369483f2..8d27e0f1962 100644
---
a/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/core/channel/PipelineChannelCreator.java
+++
b/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/core/channel/PipelineChannelCreator.java
@@ -17,11 +17,13 @@
package org.apache.shardingsphere.data.pipeline.core.channel;
+import org.apache.shardingsphere.infra.spi.annotation.SingletonSPI;
import org.apache.shardingsphere.infra.spi.type.typed.TypedSPI;
/**
* Pipeline channel creator.
*/
+@SingletonSPI
public interface PipelineChannelCreator extends TypedSPI {
/**