Skip to content

Commit

Permalink
fix: bump retries and delays
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludo Galabru committed Aug 14, 2023
1 parent aa934d2 commit aff3690
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/chainhook-cli/src/scan/bitcoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ pub async fn execute_predicates_action<'a>(
actions_triggered += 1;
match action {
BitcoinChainhookOccurrence::Http(request) => {
send_request(request, 3, 1, &ctx).await?
send_request(request, 10, 3, &ctx).await
}
BitcoinChainhookOccurrence::File(path, bytes) => {
file_append(path, bytes, &ctx)?
Expand Down
2 changes: 1 addition & 1 deletion components/chainhook-cli/src/scan/stacks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ pub async fn scan_stacks_chainstate_via_csv_using_predicate(
occurrences_found += 1;
let res = match action {
StacksChainhookOccurrence::Http(request) => {
send_request(request, 3, 1, &ctx).await
send_request(request, 10, 3, &ctx).await
}
StacksChainhookOccurrence::File(path, bytes) => file_append(path, bytes, &ctx),
StacksChainhookOccurrence::Data(_payload) => unreachable!(),
Expand Down

0 comments on commit aff3690

Please sign in to comment.