Rename remote installed marketplace fetch helper

This commit is contained in:
xli-oai
2026-05-15 02:39:26 -07:00
parent 18249d4fd7
commit 2eb4afd593
2 changed files with 5 additions and 2 deletions

View File

@@ -906,7 +906,10 @@ impl PluginRequestProcessor {
chatgpt_base_url: config.chatgpt_base_url.clone(),
};
plugins_manager
.fetch_and_cache_remote_installed_marketplaces(&remote_plugin_service_config, auth)
.fetch_remote_installed_plugin_marketplaces_with_cache(
&remote_plugin_service_config,
auth,
)
.await
};

View File

@@ -615,7 +615,7 @@ impl PluginsManager {
Some(crate::remote::group_remote_installed_plugins_by_marketplaces(plugins, &self.store))
}
pub async fn fetch_and_cache_remote_installed_marketplaces(
pub async fn fetch_remote_installed_plugin_marketplaces_with_cache(
&self,
config: &RemotePluginServiceConfig,
auth: Option<&CodexAuth>,