diff --git a/codex-rs/app-server/src/request_processors/plugins.rs b/codex-rs/app-server/src/request_processors/plugins.rs index 491b1f3849..d8d007f2b6 100644 --- a/codex-rs/app-server/src/request_processors/plugins.rs +++ b/codex-rs/app-server/src/request_processors/plugins.rs @@ -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 }; diff --git a/codex-rs/core-plugins/src/manager.rs b/codex-rs/core-plugins/src/manager.rs index 45fb7c2133..dd2c9eaefe 100644 --- a/codex-rs/core-plugins/src/manager.rs +++ b/codex-rs/core-plugins/src/manager.rs @@ -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>,