From 53aac783708c9cb9f62c9e6f7b83eeb29b738a2a Mon Sep 17 00:00:00 2001 From: Baptiste Gelez Date: Fri, 28 Dec 2018 18:46:39 +0100 Subject: [PATCH] Update search lock message --- src/main.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 8fe6d6897..8e98ebe06 100644 --- a/src/main.rs +++ b/src/main.rs @@ -73,11 +73,12 @@ fn main() { let searcher = match UnmanagedSearcher::open(&"search_index") { Err(Error::Search(e)) => match e { SearcherError::WriteLockAcquisitionError => panic!( -r#"Your search index is locked. Plume can't start. To fix this issue, run: +r#"Your search index is locked. Plume can't start. To fix this issue +make sure no other Plume instance is started, and run: plm search unlock -And try to restart Plume. +Then try to restart Plume. "#), e => Err(e).unwrap() },