Extending server process timeout (#1060)
diff --git a/gazelle/python/parser.go b/gazelle/python/parser.go index 3809a46..33eb6f4 100644 --- a/gazelle/python/parser.go +++ b/gazelle/python/parser.go
@@ -46,7 +46,7 @@ } ctx := context.Background() - ctx, parserCancel := context.WithTimeout(ctx, time.Minute*5) + ctx, parserCancel := context.WithTimeout(ctx, time.Minute*10) cmd := exec.CommandContext(ctx, parseScriptRunfile) cmd.Stderr = os.Stderr
diff --git a/gazelle/python/std_modules.go b/gazelle/python/std_modules.go index 17bc526..94ef456 100644 --- a/gazelle/python/std_modules.go +++ b/gazelle/python/std_modules.go
@@ -47,7 +47,7 @@ } ctx := context.Background() - ctx, stdModulesCancel := context.WithTimeout(ctx, time.Minute*5) + ctx, stdModulesCancel := context.WithTimeout(ctx, time.Minute*10) cmd := exec.CommandContext(ctx, stdModulesScriptRunfile) cmd.Stderr = os.Stderr