This is an automated email from the ASF dual-hosted git repository.
rong pushed a commit to branch rc/1.3.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/rc/1.3.3 by this push:
new f74efb1833f Pipe: Fixed the bug that OPCUASink's model effect is
reverted (#13377) (#13389)
f74efb1833f is described below
commit f74efb1833fa1ddced818556d87f3ffe80f6a931
Author: Caideyipi <[email protected]>
AuthorDate: Tue Sep 3 15:23:39 2024 +0800
Pipe: Fixed the bug that OPCUASink's model effect is reverted (#13377)
(#13389)
---
.../apache/iotdb/db/pipe/connector/protocol/opcua/OpcUaConnector.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/connector/protocol/opcua/OpcUaConnector.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/connector/protocol/opcua/OpcUaConnector.java
index 1885f181677..ea3b1184f55 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/connector/protocol/opcua/OpcUaConnector.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/connector/protocol/opcua/OpcUaConnector.java
@@ -153,7 +153,7 @@ public class OpcUaConnector implements PipeConnector {
Arrays.asList(
CONNECTOR_OPC_UA_MODEL_KEY,
SINK_OPC_UA_MODEL_KEY),
CONNECTOR_OPC_UA_MODEL_DEFAULT_VALUE)
-
.equals(CONNECTOR_OPC_UA_MODEL_DEFAULT_VALUE));
+
.equals(CONNECTOR_OPC_UA_MODEL_CLIENT_SERVER_VALUE));
nameSpace.startup();
newServer.startup().get();
return new Pair<>(new AtomicInteger(0), nameSpace);