Browse Source

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

红枫 6 năm trước cách đây
mục cha
commit
67c898f468
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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')