From 6641d925980ef96cd60379905142448777d9dcf7 Mon Sep 17 00:00:00 2001 From: Ted Spence Date: Thu, 24 Oct 2019 11:40:07 -0700 Subject: [PATCH] Remove "processing" warning message Summary: The "Processing Files" warning message in serverless IDE is making the system appear nonresponsive or broken to users, when in fact it is still up and available and the user should not be concerned. Let's remove this particular message. Reviewed By: 2BitSalute Differential Revision: D18118285 fbshipit-source-id: c2be243005880b9a1960123515a9900902fc0b23 --- hphp/hack/src/client/clientLsp.ml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/hphp/hack/src/client/clientLsp.ml b/hphp/hack/src/client/clientLsp.ml index 431bb891be6..87f2ba5497d 100644 --- a/hphp/hack/src/client/clientLsp.ml +++ b/hphp/hack/src/client/clientLsp.ml @@ -2309,23 +2309,7 @@ let get_client_ide_status (ide_service : ClientIdeService.t) : total = None; shortMessage = Some "Hack IDE: initializing"; } - | ClientIdeService.Status.Processing_files - { ClientIdeMessage.Processing_files.processed; total } -> - { - ShowStatus.request = - { - ShowMessageRequest.type_ = MessageType.WarningMessage; - message = - Printf.sprintf - "IDE services: processing %d/%d changes." - processed - total; - actions = []; - }; - progress = Some processed; - total = Some total; - shortMessage = Some "Hack IDE: processing"; - } + | ClientIdeService.Status.Processing_files _ | ClientIdeService.Status.Ready -> { ShowStatus.request = -- 2.11.4.GIT