Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit 9689f93

Browse files
author
Gustav Paul
authored
Switch from gometalinter to golangci-lint (#105)
switch from gometalinter to golangci-lint
1 parent ea96ea4 commit 9689f93

12 files changed

+232
-203
lines changed

Dockerfile

+5-6
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,12 @@ RUN rm -rf /usr/local/go && \
3636
ENV GOPATH /go
3737
ENV PATH /go/bin:$PATH
3838
ENV PATH /usr/local/go/bin:$PATH
39+
ENV GOLANGCI_LINT_VERSION v1.17.1
3940

40-
RUN mkdir -p /go/src/github.com/alecthomas && \
41-
cd /go/src/github.com/alecthomas && \
42-
git clone https://github.com/alecthomas/gometalinter.git --branch=v1.2.1 && \
43-
go install -v github.com/alecthomas/gometalinter && \
44-
gometalinter --install && \
45-
go get -u golang.org/x/tools/cmd/goimports && \
41+
RUN mkdir -p /go/src/github.com/golangci/ && \
42+
cd /go/src/github.com/golangci && \
43+
git clone https://github.com/golangci/golangci-lint.git --branch=$GOLANGCI_LINT_VERSION && \
44+
go install -v github.com/golangci/golangci-lint/cmd/golangci-lint && \
4645
mkdir -p /go/src/github.com/mesosphere/csilvm
4746

4847
# We explicitly disable use of lvmetad as the cache appears to yield inconsistent results,

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ shell: dev-image
5858
endif
5959

6060
check:
61-
$(BUILD_PREFIX) sh -c "go build -v ./... && gometalinter --config=gometalinter.conf --vendor ./..."
61+
$(BUILD_PREFIX) sh -c "go build -v ./... && golangci-lint run -E=goimports -E=gofmt"
6262

6363
build:
6464
$(BUILD_PREFIX) go build -ldflags "$(LDFLAGS)" ./cmd/csilvm

cmd/csilvm/csilvm.go

+8-6
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ func main() {
9595
if *socketFileEnvF != "" {
9696
sock = os.Getenv(*socketFileEnvF)
9797
}
98-
if strings.HasPrefix(sock, "unix://") {
99-
sock = sock[len("unix://"):]
100-
}
98+
sock = strings.TrimPrefix(sock, "unix://")
10199
// Unlink the domain socket in case it is left lying around from a
102100
// previous run. err return is not really interesting because it is
103101
// normal for this to fail if the process is starting for the first time.
104-
logger.Printf("Unlinking socket file: %q", sock)
105-
syscall.Unlink(sock)
102+
logger.Printf("Unlinking socket file in case it still exists: %q", sock)
103+
if err := syscall.Unlink(sock); err != nil {
104+
logger.Printf("Failed to unlink socket file: %v", err)
105+
}
106106
// Setup socket listener
107107
lis, err := net.Listen("unix", sock)
108108
if err != nil {
@@ -212,5 +212,7 @@ func main() {
212212
csi.RegisterIdentityServer(grpcServer, csilvm.IdentityServerValidator(s))
213213
csi.RegisterControllerServer(grpcServer, csilvm.ControllerServerValidator(s, s.RemovingVolumeGroup(), s.SupportedFilesystems()))
214214
csi.RegisterNodeServer(grpcServer, csilvm.NodeServerValidator(s, s.RemovingVolumeGroup(), s.SupportedFilesystems()))
215-
grpcServer.Serve(lis)
215+
if err := grpcServer.Serve(lis); err != nil {
216+
logger.Fatalf("Stopped serving, err=%v", err)
217+
}
216218
}

gometalinter.conf

-11
This file was deleted.

0 commit comments

Comments
 (0)