Skip to content

Commit

Permalink
fix: fix CA analytics dirs (#952)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 committed Feb 12, 2025
1 parent 79bd859 commit 851bd8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/analytics/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ impl RPCAnalytics {
},
ParquetBatchFactory::new(Default::default()).with_observer(observer),
AwsExporter::new(AwsConfig {
export_prefix: "blockchain-api/chain_abstraction".to_owned(),
export_prefix: "blockchain-api/chain_abstraction_bridging".to_owned(),
export_name: "bridging_info".to_owned(),
node_addr,
file_extension: "parquet".to_owned(),
Expand All @@ -369,7 +369,7 @@ impl RPCAnalytics {
},
ParquetBatchFactory::new(Default::default()).with_observer(observer),
AwsExporter::new(AwsConfig {
export_prefix: "blockchain-api/chain_abstraction".to_owned(),
export_prefix: "blockchain-api/chain_abstraction_funding".to_owned(),
export_name: "funding_info".to_owned(),
node_addr,
file_extension: "parquet".to_owned(),
Expand All @@ -389,7 +389,7 @@ impl RPCAnalytics {
},
ParquetBatchFactory::new(Default::default()).with_observer(observer),
AwsExporter::new(AwsConfig {
export_prefix: "blockchain-api/chain_abstraction".to_owned(),
export_prefix: "blockchain-api/chain_abstraction_initial_tx".to_owned(),
export_name: "initial_tx".to_owned(),
node_addr,
file_extension: "parquet".to_owned(),
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -598,3 +598,5 @@ async fn get_geoip_resolver(config: &Config, s3_client: &S3Client) -> Option<Arc
None
}
}

// no-op

0 comments on commit 851bd8d

Please sign in to comment.