Skip to content

Commit

Permalink
fix: program-transform no longer accepts optional cl_audits write flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kespinola committed Jun 18, 2024
1 parent 9c294d6 commit c537a72
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion grpc-ingest/config-ingester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ postgres:
min_connections: 10
max_connections: 50 # `max_connection` should be bigger than `program_transformer.max_tasks_in_process` otherwise unresolved lock is possible
program_transformer:
transactions_cl_audits: false
max_tasks_in_process: 40
download_metadata:
max_attempts: 3
2 changes: 0 additions & 2 deletions grpc-ingest/src/ingester.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,10 @@ pub async fn run(config: ConfigIngester) -> anyhow::Result<()> {
let pt_accounts = Arc::new(ProgramTransformer::new(
pgpool.clone(),
create_download_metadata_notifier(pgpool.clone(), config.download_metadata)?,
false,
));
let pt_transactions = Arc::new(ProgramTransformer::new(
pgpool.clone(),
create_download_metadata_notifier(pgpool.clone(), config.download_metadata)?,
config.program_transformer.transactions_cl_audits,
));
let pt_max_tasks_in_process = config.program_transformer.max_tasks_in_process;
let mut pt_tasks = JoinSet::new();
Expand Down

0 comments on commit c537a72

Please sign in to comment.