Skip to content

Commit 7e15086

Browse files
author
Ludo Galabru
committed
fix: bump incoming payload limit to 20mb
1 parent 943f2e5 commit 7e15086

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ pub async fn start_event_observer(
420420

421421
let background_job_tx_mutex = Arc::new(Mutex::new(observer_commands_tx.clone()));
422422

423-
let limits = Limits::default().limit("json", 4.megabytes());
423+
let limits = Limits::default().limit("json", 20.megabytes());
424424
let mut shutdown_config = config::Shutdown::default();
425425
shutdown_config.ctrlc = false;
426426
shutdown_config.grace = 0;

0 commit comments

Comments
 (0)