Skip to content

Commit

Permalink
fix: increase stacks event server body size limit to 500MB (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr authored Oct 22, 2024
1 parent f48cda5 commit 21234c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/chainhook-sdk/src/observer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ pub async fn start_stacks_event_observer(
});
}

let limits = Limits::default().limit("json", 20.megabytes());
let limits = Limits::default().limit("json", 500.megabytes());
let mut shutdown_config = config::Shutdown::default();
shutdown_config.ctrlc = false;
shutdown_config.grace = 0;
Expand Down

0 comments on commit 21234c9

Please sign in to comment.