Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.go b/main.go
index 8459314d..ea96a096 100644
--- a/main.go
+++ b/main.go
@@ -5,6 +5,7 @@ import (
"errors"
"fmt"
"io"
+ "math/rand"
"net/url"
"os"
"strings"
@@ -394,6 +395,8 @@ func printVersion(showVersion bool, version string) {
func main() {
log.SetOutput(os.Stderr)
+ rand.Seed(time.Now().UnixNano())
+
daemonMain()
appMain()
}