Skip to content

Commit a462071

Browse files
committed
Fix IP ranges in Zabbix API item allowed hosts
Zabbix docs say that spaces are allowed, but Zabbix seems to choke on the spaces, throwing an IP address validation error.
1 parent de01d18 commit a462071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/zabbix-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
set -x
157157
./script/zabbix_api_setup.py \
158158
--wait 120 \
159-
--allow-ips '127.0.0.1, ::1, 172.16.0.0/12' \
159+
--allow-ips '127.0.0.1,::1,172.16.0.0/12' \
160160
--tls-accept ${{ matrix.encryption }} \
161161
$PSK_ARGS \
162162
http://localhost:8080

0 commit comments

Comments
 (0)