From 247e14693adb3d7a337ec57a4d2db374fb9099cd Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 29 Apr 2019 14:00:49 +0200 Subject: wintun: try harder to open registry key This sucks. Can we please find a deterministic way of doing this instead? --- tun/wintun/registryhacks_windows.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tun/wintun/registryhacks_windows.go b/tun/wintun/registryhacks_windows.go index 62a629a..bbcc020 100644 --- a/tun/wintun/registryhacks_windows.go +++ b/tun/wintun/registryhacks_windows.go @@ -11,8 +11,8 @@ import ( ) const ( - numRetries = 25 - retryTimeout = 100 * time.Millisecond + numRetries = 100 + retryTimeout = 150 * time.Millisecond ) func registryOpenKeyRetry(k registry.Key, path string, access uint32) (key registry.Key, err error) { -- cgit v1.2.3-59-g8ed1b