mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-01-30 15:03:12 +08:00
Use total_space of the largest disk instead of available_space
This commit is contained in:
parent
4095ec462e
commit
847fcb570b
@ -187,7 +187,7 @@ impl Segment {
|
||||
"kernel_version": kernel_version,
|
||||
"cores": sys.processors().len(),
|
||||
"ram_size": sys.total_memory(),
|
||||
"disk_size": sys.disks().iter().map(|disk| disk.available_space()).max(),
|
||||
"disk_size": sys.disks().iter().map(|disk| disk.total_space()).max(),
|
||||
"server_provider": std::env::var("MEILI_SERVER_PROVIDER").ok(),
|
||||
})
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user