-
Notifications
You must be signed in to change notification settings - Fork 176
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
ExistingNet -> NetWithFaucet #3067
base: main
Are you sure you want to change the base?
Conversation
b3bd9d2
to
8ca0682
Compare
It makes more sense but it doesn't end up with "net" like the others. I still prefer the old name remote-net. |
Maybe |
@@ -377,7 +377,7 @@ impl AmmApp { | |||
#[cfg_attr(feature = "scylladb", test_case(LocalNetConfig::new_test(Database::ScyllaDb, Network::Grpc) ; "scylladb_grpc"))] | |||
#[cfg_attr(feature = "dynamodb", test_case(LocalNetConfig::new_test(Database::DynamoDb, Network::Grpc) ; "aws_grpc"))] | |||
#[cfg_attr(feature = "kubernetes", test_case(SharedLocalKubernetesNetTestingConfig::new(Network::Grpc, BuildArg::Build) ; "kubernetes_grpc"))] | |||
#[cfg_attr(feature = "existing-net", test_case(ExistingNetTestingConfig::new(None) ; "existing_net_grpc"))] | |||
#[cfg_attr(feature = "net-with-faucet", test_case(NetWithFaucetTestingConfig::new(None) ; "net_with_faucet_grpc"))] |
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.
#[cfg_attr(feature = "faucet", test_case(FaucetNetTestingConfig::new(None) ; "faucet_grpc"))]
linera-service/Cargo.toml
Outdated
@@ -54,7 +54,7 @@ kubernetes = [ | |||
"dep:pathdiff", | |||
"dep:fs_extra", | |||
] | |||
existing-net = [] | |||
net-with-faucet = [] |
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.
faucet = []
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.
Wouldn't faucet-net
be better here? Since this isn't general faucet
functionality, but specific to the faucet net 🤔 I'll do faucet-net
, but I can switch to faucet
if you disagree
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.
None of that matters because we want to change things in depth
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.
Ok, just left it as faucet-net
for now then!
8ca0682
to
e721d6e
Compare
e721d6e
to
b18f542
Compare
Motivation
As much as
ExistingNet
is better than the previous name, it's still not great.Proposal
NetWithFaucet
seems better and more descriptive of the network properties.Test Plan
CI
Release Plan