Skip to content

Commit

Permalink
Better error message for issue MaskRay#478
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdufault committed Feb 28, 2018
1 parent ba87714 commit 7a81a5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/command_line.cc
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ void RunQueryDbThread(const std::string& bin_name,
Out_Error out;
out.id = id;
out.error.code = lsErrorCodes::InternalError;
out.error.message = "Dropped completion request";
out.error.message = "Dropping completion request; a newer request "
"has come in that will be serviced instead.";
QueueManager::WriteStdout(IpcId::Unknown, out);
}
});
Expand Down

0 comments on commit 7a81a5d

Please sign in to comment.