This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git
The following commit(s) were added to refs/heads/main by this push:
new cc88b26 Fix CI by changing iotdb listening address from 127.0.0.1 to
0.0.0.0 (#60)
cc88b26 is described below
commit cc88b263d4c3331636a0c06580e7f30a82a4a693
Author: Jialin Qiao <[email protected]>
AuthorDate: Sun Nov 6 23:10:14 2022 +0800
Fix CI by changing iotdb listening address from 127.0.0.1 to 0.0.0.0 (#60)
Co-authored-by: Haonan <[email protected]>
---
test/e2e/Dockerfile.iotdb-server | 3 +++
1 file changed, 3 insertions(+)
diff --git a/test/e2e/Dockerfile.iotdb-server b/test/e2e/Dockerfile.iotdb-server
index 4fbd70a..a4514fb 100644
--- a/test/e2e/Dockerfile.iotdb-server
+++ b/test/e2e/Dockerfile.iotdb-server
@@ -24,5 +24,8 @@ RUN apt update \
ADD target /usr/local
ADD test/e2e/start-1c1d.sh /
WORKDIR /usr/local/iotdb
+RUN sed -i 's/dn_rpc_address=127.0.0.1/dn_rpc_address=0.0.0.0/g'
conf/iotdb-datanode.properties \
+ && sed -i 's/dn_internal_address=127.0.0.1/dn_internal_address=0.0.0.0/g'
conf/iotdb-datanode.properties \
+ && sed -i 's/cn_internal_address=127.0.0.1/cn_internal_address=0.0.0.0/g'
conf/iotdb-confignode.properties
EXPOSE 6667
CMD ["/start-1c1d.sh"]