mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
remove keys in welcome message
This commit is contained in:
parent
ef7b1cc829
commit
a1d20ea8c8
@ -110,16 +110,8 @@ pub fn print_launch_resume(opt: &Opt, data: &Data) {
|
||||
|
||||
eprintln!();
|
||||
|
||||
if let Some(master_key) = &data.api_keys.master {
|
||||
eprintln!("Master Key:\t{:?}", master_key);
|
||||
|
||||
if let Some(private_key) = &data.api_keys.private {
|
||||
eprintln!("Private Key:\t{:?}", private_key);
|
||||
}
|
||||
|
||||
if let Some(public_key) = &data.api_keys.public {
|
||||
eprintln!("Public Key:\t{:?}", public_key);
|
||||
}
|
||||
if data.api_keys.master.is_some() {
|
||||
eprintln!("A Master Key has been set. Requests to MeiliSearch won't be authorized unless you provide an authentication key.");
|
||||
} else {
|
||||
eprintln!("No master key found; The server will accept unidentified requests. \
|
||||
If you need some protection in development mode, please export a key: export MEILI_MASTER_KEY=xxx");
|
||||
|
Loading…
Reference in New Issue
Block a user