Skip to content

Commit 2b954b4

Browse files
committed
fix(runtime): update WebhookConfig call-sites for new retry fields
After the rebase onto master, two WebhookConfig { ... } struct literals added in fe3ec58 (zeroclaw-labs#5799) no longer compile without the three retry fields introduced in dd93422. Both are test-only call-sites, so `None` is correct for each.
1 parent 197a805 commit 2b954b4

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

crates/zeroclaw-runtime/src/daemon/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1125,6 +1125,9 @@ mod tests {
11251125
send_method: None,
11261126
auth_header: None,
11271127
secret: None,
1128+
max_retries: None,
1129+
retry_base_delay_ms: None,
1130+
retry_max_delay_ms: None,
11281131
});
11291132
assert!(has_supervised_channels(&config));
11301133
}

crates/zeroclaw-runtime/src/onboard/wizard.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7924,6 +7924,9 @@ mod tests {
79247924
send_method: None,
79257925
auth_header: None,
79267926
secret: None,
7927+
max_retries: None,
7928+
retry_base_delay_ms: None,
7929+
retry_max_delay_ms: None,
79277930
}),
79287931
..Default::default()
79297932
};

0 commit comments

Comments
 (0)