Răsfoiți Sursa

fix(host): strip space of hostnames when add hosts for hostgroup

红枫 6 ani în urmă
părinte
comite
67c898f468
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      rrd/view/portal/host.py

+ 1 - 1
rrd/view/portal/host.py

@@ -123,7 +123,7 @@ def host_add_post():
         return jsonify(msg='hosts is blank')
 
     host_arr = hosts.splitlines()
-    safe_host_arr = [h for h in host_arr if h]
+    safe_host_arr = [h.strip() for h in host_arr if h]
     if not safe_host_arr:
         return jsonify(msg='hosts is blank')