File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ async def get_available_plugins(
30
30
for p in registry_plugins :
31
31
plugin_url = p .get ("plugin_url" , None )
32
32
if plugin_url is None :
33
- log .warning (f"Plugin { p .get ('name' )} has no `plugin_url`. It will be skipped from the plugins list." )
33
+ log .warning (f"Plugin { p .get ('name' )} has no `plugin_url`. It will be skipped from the registry list." )
34
34
continue
35
- url = p .get ("url" , None )
36
- if url and url != plugin_url :
37
- log .warning (f"Plugin { p .get ('name' )} has `url` { url } different from `plugin_url` { plugin_url } . please check the plugin." )
35
+ # url = p.get("url", None)
36
+ # if url and url != plugin_url:
37
+ # log.info (f"Plugin {p.get('name')} has `url` {url} different from `plugin_url` {plugin_url}. please check the plugin.")
38
38
if plugin_url in registry_plugins_index :
39
39
current = registry_plugins_index [plugin_url ]
40
40
log .warning (f"duplicate plugin_url { plugin_url } found in registry. Plugins { p .get ('name' )} has same url than { current .get ('name' )} . Skipping." )
You can’t perform that action at this time.
0 commit comments