This is an automated email from the ASF dual-hosted git repository. justinchen pushed a commit to branch opc-small-fix-13 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 06d268cf0db1ded631895f160a09d98e1d28f757 Author: Caideyipi <[email protected]> AuthorDate: Mon Mar 30 17:22:20 2026 +0800 sptls --- .../iotdb/db/pipe/sink/protocol/opcua/server/OpcUaKeyStoreLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/server/OpcUaKeyStoreLoader.java b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/server/OpcUaKeyStoreLoader.java index f79d15bb941..b69e5785756 100644 --- a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/server/OpcUaKeyStoreLoader.java +++ b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/server/OpcUaKeyStoreLoader.java @@ -63,7 +63,7 @@ class OpcUaKeyStoreLoader { LOGGER.info("Loading KeyStore at {}", serverKeyStore); if (serverKeyStore.exists()) { - try (InputStream is = Files.newInputStream(serverKeyStore.toPath())){ + try (InputStream is = Files.newInputStream(serverKeyStore.toPath())) { keyStore.load(is, password); } catch (final IOException e) { LOGGER.warn("Load keyStore failed, the existing keyStore may be stale, re-constructing...");
