Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow instrumentation sigterm in archive node #16372

Open
wants to merge 1 commit into
base: compatible
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/archive/cli/dune
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
block_time
mina_version
)
(instrumentation (backend bisect_ppx))
(instrumentation (backend bisect_ppx --bisect-sigterm))
(preprocess (pps ppx_version ppx_jane ppx_mina)))
6 changes: 3 additions & 3 deletions src/app/archive/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
(modules archive)
(modes native)
(libraries archive_cli async async_unix core_kernel base mina_version bounded_types)
(instrumentation (backend bisect_ppx))
(instrumentation (backend bisect_ppx --bisect-sigterm))
(preprocess (pps ppx_version)))

(executable
Expand All @@ -15,7 +15,7 @@
(modules archive_testnet_signatures)
(modes native)
(libraries archive_cli mina_signature_kind.testnet async async_unix core_kernel base mina_version bounded_types)
(instrumentation (backend bisect_ppx))
(instrumentation (backend bisect_ppx --bisect-sigterm))
(preprocess (pps ppx_version)))

(executable
Expand All @@ -25,5 +25,5 @@
(modules archive_mainnet_signatures)
(modes native)
(libraries archive_cli mina_signature_kind.mainnet async async_unix core_kernel base mina_version bounded_types)
(instrumentation (backend bisect_ppx))
(instrumentation (backend bisect_ppx --bisect-sigterm))
(preprocess (pps ppx_version)))
2 changes: 1 addition & 1 deletion src/app/archive/lib/dune
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@
)
(inline_tests (flags -verbose -show-counts))
(modes native)
(instrumentation (backend bisect_ppx))
(instrumentation (backend bisect_ppx --bisect-sigterm))
(preprocess (pps ppx_mina ppx_version ppx_jane ppx_custom_printf ppx_deriving_yojson h_list.ppx)))