diff options
| author | Liam Mitchell <[email protected]> | 2025-07-21 15:56:01 -0700 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2025-07-21 15:56:01 -0700 |
| commit | fb90f836a325770f597138f1339a930c81eeac7d (patch) | |
| tree | 75fe62be48d7eff5c83246c9a48b24673d53d17f /src | |
| parent | Add PDBs and crashpad_handler to installed files during full service install (diff) | |
| download | zen-fb90f836a325770f597138f1339a930c81eeac7d.tar.xz zen-fb90f836a325770f597138f1339a930c81eeac7d.zip | |
Increase service stop timeout to 30 seconds during full install
Diffstat (limited to 'src')
| -rw-r--r-- | src/zen/cmds/service_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zen/cmds/service_cmd.cpp b/src/zen/cmds/service_cmd.cpp index b3f64e99f..2125e49f1 100644 --- a/src/zen/cmds/service_cmd.cpp +++ b/src/zen/cmds/service_cmd.cpp @@ -370,7 +370,7 @@ ServiceCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) return 1; } - int Timeout = 3000; // Wait up to 3 seconds for the service to fully stop before uninstalling + int Timeout = 30000; // Wait up to 30 seconds for the service to fully stop before uninstalling while (Timeout > 0) { Ec = QueryInstalledService(m_ServiceName, Info); |