Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 修复节点管理插件操作的bk-collector插件获取插件版本失败问题 #7423 #7429

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pipeline_plugins/components/query/sites/open/nodeman.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,6 @@ def nodeman_get_install_channel(request, cloud_id: int):
url(r"^nodeman_get_ap_list/$", nodeman_get_ap_list),
url(r"^nodeman_is_support_tjj/$", nodeman_is_support_tjj),
url(r"^nodeman_get_plugin_list/(?P<category>\w+)/$", nodeman_get_plugin_list),
url(r"^nodeman_get_plugin_version/(?P<plugin>\w+)/(?P<os_type>\w+)/$", nodeman_get_plugin_version),
url(r"^nodeman_get_plugin_version/(?P<plugin>[\w-]+)/(?P<os_type>\w+)/$", nodeman_get_plugin_version),
url(r"^nodeman_get_install_channel/(?P<cloud_id>\w+)/$", nodeman_get_install_channel),
]
Loading