Skip to content

Commit

Permalink
fix: set persistence to false for blobscan (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y authored Dec 8, 2023
1 parent d7c9b92 commit 3c06194
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/blobscan/blobscan_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ def launch_blobscan(
el_client_contexts[0].ip_addr, el_client_contexts[0].rpc_port_num
)

postgres_output = postgres.run(plan, service_name="blobscan-postgres")
postgres_output = postgres.run(
plan, service_name="blobscan-postgres", persistent=False
)
api_config = get_api_config(postgres_output.url, beacon_node_rpc_uri, chain_id)
blobscan_config = plan.add_service(API_SERVICE_NAME, api_config)

Expand Down

0 comments on commit 3c06194

Please sign in to comment.