Skip to content

feat: change concurrent number to 16 #435

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

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
]

[workspace.package]
version = "0.1.44"
version = "0.1.45"
authors = ["The Dragonfly Developers"]
homepage = "https://d7y.io/"
repository = "https://github.com/dragonflyoss/client.git"
Expand All @@ -22,13 +22,13 @@ readme = "README.md"
edition = "2021"

[workspace.dependencies]
dragonfly-client = { path = "dragonfly-client", version = "0.1.44" }
dragonfly-client-core = { path = "dragonfly-client-core", version = "0.1.44" }
dragonfly-client-config = { path = "dragonfly-client-config", version = "0.1.44" }
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "0.1.44" }
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "0.1.44" }
dragonfly-client-util = { path = "dragonfly-client-util", version = "0.1.44" }
dragonfly-client-init = { path = "dragonfly-client-init", version = "0.1.44" }
dragonfly-client = { path = "dragonfly-client", version = "0.1.45" }
dragonfly-client-core = { path = "dragonfly-client-core", version = "0.1.45" }
dragonfly-client-config = { path = "dragonfly-client-config", version = "0.1.45" }
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "0.1.45" }
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "0.1.45" }
dragonfly-client-util = { path = "dragonfly-client-util", version = "0.1.45" }
dragonfly-client-init = { path = "dragonfly-client-init", version = "0.1.45" }
thiserror = "1.0"
dragonfly-api = "2.0.110"
reqwest = { version = "0.11.27", features = ["stream", "native-tls", "default-tls", "rustls-tls"] }
Expand Down
2 changes: 1 addition & 1 deletion dragonfly-client-config/src/dfdaemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ fn default_download_piece_timeout() -> Duration {
// default_download_concurrent_piece_count is the default number of concurrent pieces to download.
#[inline]
fn default_download_concurrent_piece_count() -> u32 {
32
16
}

// default_download_max_schedule_count is the default max count of schedule.
Expand Down
Loading