Explorar o código

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

红枫 %!s(int64=6) %!d(string=hai) anos
pai
achega
67c898f468
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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')