Skip to content

Commit 21234c9

Browse files
authored
fix: increase stacks event server body size limit to 500MB (#660)
1 parent f48cda5 commit 21234c9

File tree

1 file changed

+1
-1
lines changed
  • components/chainhook-sdk/src/observer

1 file changed

+1
-1
lines changed

components/chainhook-sdk/src/observer/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ pub async fn start_stacks_event_observer(
996996
});
997997
}
998998

999-
let limits = Limits::default().limit("json", 20.megabytes());
999+
let limits = Limits::default().limit("json", 500.megabytes());
10001000
let mut shutdown_config = config::Shutdown::default();
10011001
shutdown_config.ctrlc = false;
10021002
shutdown_config.grace = 0;

0 commit comments

Comments
 (0)