This is an automated email from the ASF dual-hosted git repository.
CritasWang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-client-rust.git
The following commit(s) were added to refs/heads/main by this push:
new 9aa6064 CI: bind dn_rpc_address to 0.0.0.0 for the 2.0.10 service
container (2.0.10+ images default to 127.0.0.1, refusing connections through
docker's port mapping)
9aa6064 is described below
commit 9aa60646a45d75d2f93bd4c7ab5741c47b075ecf
Author: CritasWang <[email protected]>
AuthorDate: Mon Jul 20 11:35:11 2026 +0800
CI: bind dn_rpc_address to 0.0.0.0 for the 2.0.10 service container
(2.0.10+ images default to 127.0.0.1, refusing connections through docker's
port mapping)
---
.github/workflows/ci.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ab4c237..6bec0ae 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -76,6 +76,10 @@ jobs:
services:
iotdb:
image: apache/iotdb:${{ matrix.iotdb-version }}-standalone
+ env:
+ # 2.0.10+ images default dn_rpc_address to 127.0.0.1 (loopback only),
+ # which rejects connections forwarded through docker's port mapping.
+ dn_rpc_address: 0.0.0.0
ports:
- 6667:6667
steps: