We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 548e7c3 commit b32a4a9Copy full SHA for b32a4a9
src/renderer/renderer_client.cc
@@ -106,8 +106,11 @@ class RendererLauncher : public RendererLauncherInterface {
106
const std::string &name, const std::string &path,
107
bool disable_renderer_path_check,
108
IPCClientFactoryInterface *ipc_client_factory_interface) override {
109
- if (Status() == RendererStatus::RENDERER_LAUNCHING) {
+ if (Status() == RendererStatus::RENDERER_LAUNCHING ||
110
+ Status() == RendererStatus::RENDERER_READY ||
111
+ Status() == RendererStatus::RENDERER_TIMEOUT) {
112
// Renderer is already launching.
113
+ // The renderer is still up and running when in the pending command state.
114
return;
115
}
116
SetStatus(RendererStatus::RENDERER_LAUNCHING);
0 commit comments