mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 04:28:55 +01:00
compile write_user_id only when the analytics are enabled
This commit is contained in:
parent
c752c14c46
commit
10de92987a
@ -32,6 +32,7 @@ fn find_user_id(db_path: &Path) -> Option<String> {
|
||||
.or_else(|| fs::read_to_string(&config_user_id_path(db_path)?).ok())
|
||||
}
|
||||
|
||||
#[cfg(all(not(debug_assertions), feature = "analytics"))]
|
||||
/// Write the user-id in the `data.ms` and in `~/.config/MeiliSearch/path-to-db-user-id`. Ignore the errors.
|
||||
fn write_user_id(db_path: &Path, user_id: &str) {
|
||||
let _ = fs::write(db_path.join("user-id"), user_id.as_bytes());
|
||||
|
Loading…
Reference in New Issue
Block a user