Increase GLOBAL_DEFAULT_TIMEOUT to 10s reduce chance of Failed to acquire global mutex

This commit is contained in:
Kamil Trzciński 2022-12-14 11:46:42 +01:00
parent 0e8946d79f
commit b99849675c
2 changed files with 2 additions and 1 deletions

View file

@ -22,7 +22,7 @@ namespace CommonHelpers
private static bool useKernelDrivers;
private const String GLOBAL_MUTEX_NAME = "Global\\SteamDeckToolsCommonHelpers";
private const int GLOBAL_DEFAULT_TIMEOUT = 5000;
private const int GLOBAL_DEFAULT_TIMEOUT = 10000;
public static bool WantsRunOnStartup
{

View file

@ -30,3 +30,4 @@
- Add `Sentry` error tracking (updated)
- Tune `PowerControl` key repeats
- Improve `Sentry` integration to reduce amount of data being sent
- Increase timeout to `10s` reduce chance of `Failed to acquire global mutex`