Skip to content

Commit

Permalink
Merge pull request #1622 from golemfactory/no_subneto-v0.8
Browse files Browse the repository at this point in the history
remove subnet question from ya-provider installer
  • Loading branch information
jiivan authored Oct 5, 2021
1 parent 004f8a3 commit 14a786d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions golem_cli/src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,7 @@ pub async fn setup(run_config: &RunConfig, force: bool) -> Result<i32> {
config.subnet = None;
}
}
let subnet = promptly::prompt_default(
"Subnet ",
config.subnet.unwrap_or_else(|| DEFAULT_SUBNET.to_string()),
)?;
let subnet = config.subnet.unwrap_or_else(|| DEFAULT_SUBNET.to_string());

let account_msg = &config
.account
Expand Down
1 change: 1 addition & 0 deletions goth_tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ goth-assets = "python -m goth create-assets assets"
goth-tests = "pytest -svx ."
provider-tests = "pytest -svx ./domain/ya-provider"
typecheck = "mypy ."

0 comments on commit 14a786d

Please sign in to comment.