fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

bump ctags timeout from 5s to 60s

There's no reason to assume that ctags can complete within 5s for large
repositories.

+1 -1
+1 -1
build/ctags.go
··· 81 81 err := cmd.Wait() 82 82 errChan <- err 83 83 }() 84 - timeout := time.After(5 * time.Second) 84 + timeout := time.After(60 * time.Second) 85 85 select { 86 86 case <-timeout: 87 87 cmd.Process.Kill()