diff --git a/hive-c0re/src/forge/mod.rs b/hive-c0re/src/forge/mod.rs index b7c6c770..92f1c4cb 100644 --- a/hive-c0re/src/forge/mod.rs +++ b/hive-c0re/src/forge/mod.rs @@ -330,7 +330,7 @@ pub async fn ensure_config_pr_webhook(core_token: &str, dashboard_port: u16) -> // List existing org hooks — skip creation if ours is already there. // Best-effort: a listing failure falls through to the create attempt. - let listed = tokio::time::timeout(HTTP_TIMEOUT, client.org_list_hooks(CONFIG_ORG).all()) + let listed = tokio::time::timeout(HTTP_TIMEOUT, client.org_list_hooks(CONFIG_ORG).send()) .await .map_err(anyhow::Error::from) .and_then(|r| r.map_err(anyhow::Error::from));