Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a request size limit #29

Merged
merged 8 commits into from
Aug 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Voila
i-am-tom committed Aug 20, 2024
commit a880480461024bdf02915d144d28af6fba35832b
2 changes: 1 addition & 1 deletion crates/sdk/src/connector/example.rs
Original file line number Diff line number Diff line change
@@ -126,7 +126,7 @@ mod tests {
async fn capabilities_match_ndc_spec_version() -> Result<()> {
let state =
crate::default_main::init_server_state(Example::default(), PathBuf::new()).await?;
let app = crate::default_main::create_router::<Example>(state, None);
let app = crate::default_main::create_router::<Example>(state, None, None);

let client = TestClient::new(app);
let response = client.get("/capabilities").send().await;