Skip to content

Commit

Permalink
fix: disable predicate healthcheck likely causing predicate restarts
Browse files Browse the repository at this point in the history
  • Loading branch information
zone117x committed Oct 30, 2024
1 parent 77fd90a commit 6c9b802
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/chainhook/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ export async function startChainhookServer(args: { db: PgStore }): Promise<Chain
validate_chainhook_payloads: false,
body_limit: ENV.EVENT_SERVER_BODY_LIMIT,
predicate_disk_file_path: ENV.CHAINHOOK_PREDICATE_PATH,
predicate_health_check_interval_ms: 300_000,
// TODO: bug around predicate re-registration
// predicate_health_check_interval_ms: 300_000,
node_type: 'chainhook',
};
const chainhook: ChainhookNodeOptions = {
Expand Down

0 comments on commit 6c9b802

Please sign in to comment.