This is an automated email from the ASF dual-hosted git repository.
rong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 334c457438b Pipe: Fixed the bug that OPCUASink's model effect is
reverted (#13377)
334c457438b is described below
commit 334c457438bc5aac6b90506f144f401a3922f848
Author: Caideyipi <[email protected]>
AuthorDate: Tue Sep 3 10:09:36 2024 +0800
Pipe: Fixed the bug that OPCUASink's model effect is reverted (#13377)
---
.../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);