-
Notifications
You must be signed in to change notification settings - Fork 65
apollo_gateway_config: create proof archive writer config #11478
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
base: graphite-base/11478
Are you sure you want to change the base?
Conversation
3cf656f to
7bf8377
Compare
e9c9b5f to
e0ac006
Compare
7bf8377 to
14e4b60
Compare
meship-starkware
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@meship-starkware reviewed 9 files and all commit messages, and made 4 comments.
Reviewable status: 9 of 10 files reviewed, 4 unresolved discussions (waiting on @avivg-starkware, @einat-starkware, and @noaov1).
crates/apollo_deployments/resources/app_configs/replacer_proof_manager_config.json line 2 at r1 (raw file):
{ "proof_manager_config.persistent_root": "/data/proofs"
Revert
Code quote:
"proof_manager_config.persistent_root": "/data/proofs"crates/apollo_gateway/src/gateway.rs line 244 at r1 (raw file):
let stateless_tx_validator = Arc::new(StatelessTransactionValidator { config: config.stateless_tx_validator_config.clone(), });
Could you revert here as well?
Code quote:
});crates/apollo_deployments/src/test_utils.rs line 58 at r1 (raw file):
], consensus_manager_config_network_config_secret_key: None, gateway_config_proof_archive_writer_config_bucket_name: "arbitrary_bucket_name"
Shouldn't we give it a more indicative name?
Code quote:
gateway_config_proof_archive_writer_config_bucket_name: "arbitrary_bucket_name"crates/apollo_gateway_config/src/config.rs line 306 at r1 (raw file):
#[derive(Clone, Debug, Serialize, Deserialize, Validate, PartialEq)] pub struct ProofArchiveWriterConfig { pub bucket_name: Sensitive<String>,
Why do we need the sensitive here?
Code quote:
pub bucket_name: Sensitive<String>,
No description provided.