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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Newdigate <andrew@troupe.co>2017-06-07 16:05:51 +0300
committerAndrew Newdigate <andrew@troupe.co>2017-06-07 16:05:51 +0300
commite4584f00a9f6528a0a8cf9b626a2c10659a82619 (patch)
tree8834af6680d43e4c9101288381f1776d67cf05ab
parentdd0855a7787c0601d83352ed815e6420ff9992b7 (diff)
Formatting fixes
-rw-r--r--internal/config/prometheus.go2
-rw-r--r--internal/config/sentry.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/config/prometheus.go b/internal/config/prometheus.go
index 6c4497bad..5bd0906d0 100644
--- a/internal/config/prometheus.go
+++ b/internal/config/prometheus.go
@@ -1,9 +1,9 @@
package config
import (
+ log "github.com/Sirupsen/logrus"
"github.com/grpc-ecosystem/go-grpc-prometheus"
"github.com/prometheus/client_golang/prometheus"
- log "github.com/Sirupsen/logrus"
)
// ConfigurePrometheus uses the global configuration to configure prometheus
diff --git a/internal/config/sentry.go b/internal/config/sentry.go
index cbd899400..d05c62b11 100644
--- a/internal/config/sentry.go
+++ b/internal/config/sentry.go
@@ -3,8 +3,8 @@ package config
import (
"fmt"
- "github.com/getsentry/raven-go"
log "github.com/Sirupsen/logrus"
+ "github.com/getsentry/raven-go"
"gitlab.com/gitlab-org/gitaly/internal/service/middleware/panichandler"
)