Skip to content

Commit 0b365fa

Browse files
authored
feat: change concurrent number to 16 (#435)
Signed-off-by: Gaius <[email protected]>
1 parent 4849535 commit 0b365fa

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
]
1313

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

2424
[workspace.dependencies]
25-
dragonfly-client = { path = "dragonfly-client", version = "0.1.44" }
26-
dragonfly-client-core = { path = "dragonfly-client-core", version = "0.1.44" }
27-
dragonfly-client-config = { path = "dragonfly-client-config", version = "0.1.44" }
28-
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "0.1.44" }
29-
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "0.1.44" }
30-
dragonfly-client-util = { path = "dragonfly-client-util", version = "0.1.44" }
31-
dragonfly-client-init = { path = "dragonfly-client-init", version = "0.1.44" }
25+
dragonfly-client = { path = "dragonfly-client", version = "0.1.45" }
26+
dragonfly-client-core = { path = "dragonfly-client-core", version = "0.1.45" }
27+
dragonfly-client-config = { path = "dragonfly-client-config", version = "0.1.45" }
28+
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "0.1.45" }
29+
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "0.1.45" }
30+
dragonfly-client-util = { path = "dragonfly-client-util", version = "0.1.45" }
31+
dragonfly-client-init = { path = "dragonfly-client-init", version = "0.1.45" }
3232
thiserror = "1.0"
3333
dragonfly-api = "2.0.110"
3434
reqwest = { version = "0.11.27", features = ["stream", "native-tls", "default-tls", "rustls-tls"] }

dragonfly-client-config/src/dfdaemon.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ fn default_download_piece_timeout() -> Duration {
118118
// default_download_concurrent_piece_count is the default number of concurrent pieces to download.
119119
#[inline]
120120
fn default_download_concurrent_piece_count() -> u32 {
121-
32
121+
16
122122
}
123123

124124
// default_download_max_schedule_count is the default max count of schedule.

0 commit comments

Comments
 (0)