Skip to content

Commit f036da1

Browse files
committed
fix: correct arg count
1 parent c880732 commit f036da1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • crates/taurus-core/src/runtime/functions

crates/taurus-core/src/runtime/functions/http.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ use ureq::http;
1919
use ureq::{Body, RequestExt};
2020

2121
pub(crate) const FUNCTIONS: &[FunctionRegistration] = &[
22-
FunctionRegistration::eager("http::request::send", send_request, 1),
23-
FunctionRegistration::eager("rest::control::respond", respond, 1),
22+
FunctionRegistration::eager("http::request::send", send_request, 4),
23+
FunctionRegistration::eager("rest::control::respond", respond, 3),
2424
];
2525

2626
fn fail(category: &str, message: impl Into<String>) -> Signal {

0 commit comments

Comments
 (0)