[O] Better webhook error handling

This commit is contained in:
2026-05-08 01:03:30 +00:00
parent 60b6caf1a6
commit 0566e97c6a
5 changed files with 428 additions and 99 deletions
+8 -1
View File
@@ -169,6 +169,7 @@ fn sync_group(
mirror,
&all_endpoint_repos,
context.work_dir,
context.options.jobs,
)?;
}
@@ -331,7 +332,13 @@ fn sync_group(
if create_missing && !context.options.dry_run {
let repos = list_group_repos(context.config, mirror)?;
webhook::ensure_configured_webhooks(context.config, mirror, &repos, context.work_dir)?;
webhook::ensure_configured_webhooks(
context.config,
mirror,
&repos,
context.work_dir,
context.options.jobs,
)?;
}
Ok(failures)