From 8cedb86ed2ec07e9f0da31a65d324709b97336f7 Mon Sep 17 00:00:00 2001 From: renancloudwalk Date: Wed, 28 Feb 2024 16:18:14 -0300 Subject: [PATCH] chore: remove sudo, as it is not needed here it is needed before the whole e2e-flamegraph call --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 059b74718..93b5dfee0 100644 --- a/justfile +++ b/justfile @@ -255,7 +255,7 @@ e2e-flamegraph: # Run cargo flamegraph with necessary environment variables echo "Running cargo flamegraph..." - sudo CARGO_PROFILE_RELEASE_DEBUG=true cargo flamegraph --bin rpc-server-poller -- --external-rpc=http://localhost:3003/rpc + CARGO_PROFILE_RELEASE_DEBUG=true cargo flamegraph --bin rpc-server-poller -- --external-rpc=http://localhost:3003/rpc # ------------------------------------------------------------------------------