Skip to content

Commit

Permalink
feat: 超大订阅方案 (closed #2429)
Browse files Browse the repository at this point in the history
  • Loading branch information
wyyalt committed Nov 12, 2024
1 parent deaf835 commit c5b294a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/subscription/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ def get_host_detail(host_info_list: list, bk_biz_id: int = None, data_backend: s

for host_info in host_info_list:
if "bk_host_id" in host_info:
if host_info["bk_host_id"] in host_id_dict.keys():
if str(host_info["bk_host_id"]) in host_id_dict.keys():
host_info.update(host_id_dict[host_info["bk_host_id"]])
host_details.append(host_info)
else:
Expand Down

0 comments on commit c5b294a

Please sign in to comment.