Skip to content

Commit fe1bc35

Browse files
authored
fix(systemd): fix operator in host detection (#26890) (#26891)
1 parent 55b7fb5 commit fe1bc35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/packages/influxdb/fs/usr/lib/influxdb/scripts/influxd-systemd-start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if [ $HTTPS_ENABLED = "true" ]; then
6666
echo "$HTTPS_CERT found"
6767
PROTOCOL="https"
6868
fi
69-
HOST=${BIND_ADDRESS%%:*}
69+
HOST=${BIND_ADDRESS%:*}
7070
HOST=${HOST:-"localhost"}
7171
PORT=${BIND_ADDRESS##*:}
7272

0 commit comments

Comments
 (0)