This is an automated email from the ASF dual-hosted git repository.
justinchen pushed a commit to branch client-opc
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/client-opc by this push:
new 97db004cf7b fix
97db004cf7b is described below
commit 97db004cf7b5da427014f2850004e75dd8718d44
Author: Caideyipi <[email protected]>
AuthorDate: Mon Dec 22 18:20:18 2025 +0800
fix
---
.../protocol/opcua/client/IoTDBOpcUaClient.java | 24 +---------------------
1 file changed, 1 insertion(+), 23 deletions(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/client/IoTDBOpcUaClient.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/client/IoTDBOpcUaClient.java
index db9fd171dad..a952197c292 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/client/IoTDBOpcUaClient.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/client/IoTDBOpcUaClient.java
@@ -251,29 +251,7 @@ public class IoTDBOpcUaClient {
LocalizedText.english(name),
Unsigned.uint(0), // writeMask
Unsigned.uint(0), // userWriteMask
- null // 启用历史记录
- );
- }
-
- public static ObjectAttributes createFolder1Attributes() {
- return new ObjectAttributes(
- Unsigned.uint(0xFFFF), // specifiedAttributes
- LocalizedText.english("sg"),
- LocalizedText.english("反应釜压力传感器"),
- Unsigned.uint(0), // writeMask
- Unsigned.uint(0), // userWriteMask
- null // 启用历史记录
- );
- }
-
- public static ObjectAttributes createFolder2Attributes() {
- return new ObjectAttributes(
- Unsigned.uint(0xFFFF), // specifiedAttributes
- LocalizedText.english("d1"),
- LocalizedText.english("反应釜压力传感器"),
- Unsigned.uint(0), // writeMask
- Unsigned.uint(0), // userWriteMask
- null // 启用历史记录
+ null // notifier
);
}
}